ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/tcProps/Makefile
Revision: 1062
Committed: Fri Feb 20 21:20:37 2004 UTC (20 years, 4 months ago) by mmeineke
File size: 638 byte(s)
Log Message:
debugging the director code

File Contents

# Content
1 CC=icc
2 #CFLAGS = -g -I/usr/local/intel/mkl61/include
3 CFLAGS = -I/usr/local/intel/mkl61/include -xW -O2 -tpp7 -I/usr/local/intel/mkl61/include
4
5 PROG=tcProps
6
7 SRCS = tcProps.c \
8 scdCorr.c \
9 readWrite.c \
10 directorHead.c \
11 directorWhole.c
12 OBJS = $(SRCS:.c=.o)
13
14 all: Make.dep $(PROG)
15
16 $(PROG): $(OBJS)
17 $(CC) $(CFLAGS) $(OBJS) -o $@ -L/usr/local/intel/mkl61/lib/32 -lmkl_lapack64 -lmkl -lvml -lm -lguide
18
19 depend: Make.dep
20
21 Make.dep: $(SRCS)
22 /bin/rm -f Make.dep
23 $(CC) -I/usr/local/intel/mkl61/include -MM $(SRCS) > Make.dep
24
25 install: $(PROG)
26 /bin/cp -f $(PROG) $(HOME)/bin/
27
28 clean:
29 /bin/rm -f *.o *~ tcProps Make.dep
30
31 include Make.dep