ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/madProps/Makefile
Revision: 38
Committed: Fri Jul 19 01:37:38 2002 UTC (21 years, 11 months ago) by mmeineke
Original Path: branches/mmeineke/madProps/Makefile
File size: 358 byte(s)
Log Message:
A half polished version of props

File Contents

# Content
1 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