ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/frameCount/src/Makefile
Revision: 34
Committed: Fri Jul 19 00:01:59 2002 UTC (21 years, 11 months ago) by mmeineke
Original Path: branches/mmeineke/frameCount/src/Makefile
File size: 272 byte(s)
Log Message:
Counts the number of frames in a dump or xyz

File Contents

# 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