ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/madProps/Makefile
Revision: 39
Committed: Fri Jul 19 01:37:38 2002 UTC (21 years, 11 months ago) by mmeineke
File size: 358 byte(s)
Log Message:
This commit was generated by cvs2svn to compensate for changes in r38, which
included commits to RCS files with non-trunk default branches.

File Contents

# User Rev Content
1 mmeineke 38 bin = $(HOME)/bin
2     CC = gcc
3     C_FLAGS = -O3
4     #C_FLAGS = -g
5    
6     MP_OBJ = madProps.o frameCount.o
7     MP_HEADERS = frameCount.h
8    
9     %.o:%.c %.h
10     $(CC) $(C_FLAGS) -c $*.c
11    
12     all: $(bin)/madProps
13    
14     $(bin)/madProps: $(MP_OBJ)
15     $(CC) $(C_FLAGS) -o $@ $(MP_OBJ) -lm
16    
17     madProps.o: madProps.c $(MP_HEADERS)
18     $(CC) $(C_FLAGS) -c madProps.c
19    
20     clean:
21     rm *~; rm *.o; rm $(bin)/madProps