ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/tcProps/Makefile
Revision: 1060
Committed: Thu Feb 19 21:10:06 2004 UTC (20 years, 4 months ago) by mmeineke
File size: 586 byte(s)
Log Message:
added scd correlations, and director and order parameters for the head groups

File Contents

# Content
1 CC=icc
2 #CFLAGS = -g
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 OBJS = $(SRCS:.c=.o)
12
13 all: Make.dep $(PROG)
14
15 $(PROG): $(OBJS)
16 $(CC) $(CFLAGS) $(OBJS) -o $@ -L/usr/local/intel/mkl61/lib/32 -lmkl_lapack64 -lmkl -lvml -lm -lguide
17
18 depend: Make.dep
19
20 Make.dep: $(SRCS)
21 /bin/rm -f Make.dep
22 $(CC) -I/usr/local/intel/mkl61/include -MM $(SRCS) > Make.dep
23
24 install: $(PROG)
25 /bin/cp -f $(PROG) $(HOME)/bin/
26
27 clean:
28 /bin/rm -f *.o *~ tcProps Make.dep
29
30 include Make.dep