Revision: | 681 |
Committed: | Tue Aug 12 16:08:05 2003 UTC (21 years, 8 months ago) by mmeineke |
File size: | 271 byte(s) |
Log Message: | changed how the comment line is handled to allow greater flexibility. |
# | Content |
---|---|
1 | bin = $(HOME)/bin |
2 | INC = ./headers |
3 | CC = icc |
4 | C_FLAGS = -O3 -xW -tpp7 |
5 | #C_FLAGS = -ggdb |
6 | |
7 | all: $(bin)/dumpCat |
8 | |
9 | $(bin)/dumpCat: dumpCat.o |
10 | $(CC) $(C_FLAGS) -o $@ dumpCat.o |
11 | |
12 | dumpCat.o: dumpCat.c |
13 | $(CC) $(C_FLAGS) -c -I$(INC) dumpCat.c |
14 | |
15 | clean: |
16 | rm *~; rm *.o; rm $(bin)/dumpCat |