ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/dumpCat/Makefile
Revision: 47
Committed: Wed Jul 24 16:51:43 2002 UTC (21 years, 11 months ago) by mmeineke
Original Path: branches/mmeineke/dumpCat/Makefile
File size: 261 byte(s)
Log Message:
little utility for catting together dump files.

File Contents

# User Rev Content
1 mmeineke 47 bin = $(HOME)/bin
2     INC = ./headers
3     CC = gcc
4     C_FLAGS = -O3
5     #C_FLAGS = -ggdb
6    
7     all: $(bin)/dumpCat
8    
9     $(bin)/dumpCat: dumpCat.o
10     $(CC) $(C_FLAGS) -o $@ dumpCat.o
11    
12     dumpCat.o: dumpCat.c
13     $(CC) $(C_FLAGS) -c -I$(INC) dumpCat.c
14    
15     clean:
16     rm *~; rm *.o; rm $(bin)/dumpCat