Mercurial > hg > Members > kono > Cerium
view TaskManager/Test/Sum/Makefile @ 131:805d27efafd8
fix
author | gongo@charles.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Tue, 25 Nov 2008 17:24:18 +0900 |
parents | b7e6899ebb3b |
children |
line wrap: on
line source
TARGET = main CC = g++ CFLAGS = -Wall -g LIBS = -L../../ -lmanager INCLUDE = -I../../../include/TaskManager all: $(TARGET) $(TARGET): main.o $(CC) $< -o $@ $(LIBS) main.o: main.cpp $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ clean: rm -f main.o $(TARGET) rm -f *~ \#*