-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·39 lines (27 loc) · 998 Bytes
/
Makefile
File metadata and controls
executable file
·39 lines (27 loc) · 998 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
33
34
35
36
37
38
39
#
# GenRan: Non-gaussian random field generator.
# Copyright (C) 2006 Peter Grassl
#
genran.exe : genran.o gaussianfieldgenerator.o fourier.o help.o format.o randomfieldgenerator.o
g++ -o genran.exe genran.o gaussianfieldgenerator.o fourier.o help.o format.o randomfieldgenerator.o
genran.o : genran.C random.h
g++ -c -g genran.C
gaussianfieldgenerator.o : gaussianfieldgenerator.C random.h
g++ -c -g gaussianfieldgenerator.C
randomfieldgenerator.o : randomfieldgenerator.C random.h
g++ -c -g randomfieldgenerator.C
fourier.o : fourier.C random.h
g++ -c -g fourier.C
help.o : help.C random.h
g++ -c -g help.C
format.o: format.C random.h
g++ -c -g format.C
clean:
rm genran.exe genran.o gaussianfieldgenerator.o fourier.o help.o format.o randomfieldgenerator.o
tools/autocorr: tools/autocorr.cpp
g++ -O2 -o tools/autocorr tools/autocorr.cpp
test: genran.exe
./tests/run.sh
validate: genran.exe tools/autocorr
./tests/validate_iteration.sh
.PHONY: clean test validate