ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/tcProps/Makefile
Revision: 1059
Committed: Wed Feb 18 21:45:36 2004 UTC (21 years, 2 months ago) by mmeineke
File size: 328 byte(s)
Log Message:
made a makefile

File Contents

# Content
1 CC=icc
2 CFLAGS = -g
3 #CFLAGS = -xW -O2 -tpp7
4
5 SRCS = tcProps.c \
6 scdCorr.c \
7 readWrite.c
8 OBJS = $(SRCS:.c=.o)
9
10 all: Make.dep tcProps
11
12 tcProps: $(OBJS)
13 $(CC) $(CFLAGS) -o$@ -lm
14
15 depend: Make.dep
16
17 Make.dep: $(SRCS)
18 /bin/rm -f Make.dep
19 $(CC) -MM $(SRCS) > Make.dep
20
21 clean:
22 /bin/rm -f *.o *~ tcProps Make.dep
23
24 include Make.dep