-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (20 loc) · 988 Bytes
/
Makefile
File metadata and controls
32 lines (20 loc) · 988 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#CFLAGS = -I${GMXLDLIB}/../include -g -O3 -fomit-frame-pointer -finline-functions -Wall -msse2 -Wno-unused -fno-exceptions
#CXXFLAGS = -I${GMXLDLIB}/../include -g -O3 -fomit-frame-pointer -finline-functions -Wall -msse2 -Wno-unused -fno-exceptions
CFLAGS = -I${GMXLDLIB}/../include -g -Wall -Wno-unused -fno-exceptions -O3
CXXFLAGS = -I${GMXLDLIB}/../include -g -Wall -Wno-unused -fno-exceptions -O3
#CFLAGS = -I${GMXLDLIB}/../include -g -Wall -msse2 -funroll-all-loops -Wno-unused -fno-exceptions
#CXXFLAGS = -I${GMXLDLIB}/../include -g -Wall -msse2 -funroll-all-loops -Wno-unused -fno-exceptions
LDFLAGS = -L${GMXLDLIB} -g
LIBS = -lgmx -lmd -lpthread
timeproc: timeproc.o proccom.o event.o hist.o grid.o
$(CXX) $^ ${LDFLAGS} ${LIBS} -o $@
clean:
rm *.o
depend:
makedepend -Y. -f Makefile *.cpp
# DO NOT DELETE
event.o: hist.h event.h grid.h proccom.h
grid.o: grid.h
hist.o: hist.h
proccom.o: hist.h event.h grid.h proccom.h
timeproc.o: hist.h event.h grid.h proccom.h