Mercurial > hg > Game > Cerium
comparison TaskManager/Test/Sum/Makefile @ 3:2356238ebea7
*** empty log message ***
author | gongo |
---|---|
date | Tue, 05 Feb 2008 20:22:50 +0900 |
parents | |
children | 75f184d16fa5 |
comparison
equal
deleted
inserted
replaced
2:70e9baa00f51 | 3:2356238ebea7 |
---|---|
1 TARGET = main | |
2 | |
3 CC = g++ | |
4 CFLAGS = -Wall -O2 -g | |
5 LIBS = -L../../ -lmanager | |
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 *~ \#* |