ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/tcProps/Makefile
(Generate patch)

Comparing:
branches/mmeineke/tcProps/Makefile (file contents), Revision 1047 by mmeineke, Wed Feb 11 20:29:54 2004 UTC vs.
trunk/tcProps/Makefile (file contents), Revision 1073 by mmeineke, Sat Feb 28 16:45:57 2004 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines