| Revision: | 35 |
| Committed: | Fri Jul 19 00:01:59 2002 UTC (23 years, 4 months ago) by mmeineke |
| File size: | 272 byte(s) |
| Log Message: | This commit was generated by cvs2svn to compensate for changes in r34, which included commits to RCS files with non-trunk default branches. |
| # | Content |
|---|---|
| 1 | bin = $(HOME)/bin |
| 2 | CC = gcc |
| 3 | C_FLAGS = -O3 |
| 4 | #C_FLAGS = -g |
| 5 | |
| 6 | FC_OBJS = frameCount.o |
| 7 | |
| 8 | all: $(bin)/frameCount |
| 9 | |
| 10 | $(bin)/frameCount: $(FC_OBJS) |
| 11 | $(CC) $(C_FLAGS) -o $@ $(FC_OBJS) -lm |
| 12 | |
| 13 | frameCount.o: frameCount.c |
| 14 | $(CC) $(C_FLAGS) -c $? |
| 15 | |
| 16 | clean: |
| 17 | rm *~; rm *.o; rm $(bin)/frameCount |