| Revision: | 48 |
| Committed: | Wed Jul 24 16:51:43 2002 UTC (23 years, 4 months ago) by mmeineke |
| File size: | 261 byte(s) |
| Log Message: | This commit was generated by cvs2svn to compensate for changes in r47, which included commits to RCS files with non-trunk default branches. |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | mmeineke | 47 | bin = $(HOME)/bin |
| 2 | INC = ./headers | ||
| 3 | CC = gcc | ||
| 4 | C_FLAGS = -O3 | ||
| 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 |