ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/frameCount/src/Makefile
Revision: 35
Committed: Fri Jul 19 00:01:59 2002 UTC (21 years, 11 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.

File Contents

# User Rev Content
1 mmeineke 34 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