Mercurial > hg > Game > Cerium
annotate TaskManager/Test/Sum/Makefile @ 145:a5138d6e8996 draft
fix
author | gongo@gendarme.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Tue, 02 Dec 2008 12:46:54 +0900 |
parents | b7e6899ebb3b |
children |
rev | line source |
---|---|
3 | 1 TARGET = main |
2 | |
6 | 3 CC = g++ |
22 | 4 CFLAGS = -Wall -g |
6 | 5 LIBS = -L../../ -lmanager |
3 | 6 INCLUDE = -I../../../include/TaskManager |
7 | |
8 | |
9 all: $(TARGET) | |
10 | |
11 $(TARGET): main.o | |
12 $(CC) $< -o $@ $(LIBS) | |
13 | |
14 main.o: main.cpp | |
15 $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ | |
16 | |
17 clean: | |
18 rm -f main.o $(TARGET) | |
19 rm -f *~ \#* |