Mercurial > hg > Members > kono > Cerium
view TaskManager/Test/Sum/Makefile @ 294:0b823cdb0d93
merge
author | e065746@localhost.localdomain |
---|---|
date | Fri, 05 Jun 2009 19:18:12 +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 *~ \#*