X-Git-Url: https://hackdaworld.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=b25487e2bde7283e0ba47d5af3357d359324ac55;hb=2eed6adf57a8fdcfbbeb5afd3b09cdf0085ee341;hp=73645df0606362e59a2d6259400aefb0fc79edf1;hpb=dff2917d22ed07707d222bc10fab7370356699dc;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index 73645df..b25487e 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,22 @@ CC = gcc CFLAGS = -Wall +#CFLAGS += -Wextra -pedantic CFLAGS += -O3 CFLAGS += -g #CFLAGS += -ffloat-store CFLAGS += -DALBE +#CFLAGS += -DTERSOFF_ORIG + +#CFLAGS += -DSTATIC_LISTS + #CFLAGS += -DDEBUG -CFLAGS += -DDSTART=400 -DDEND=600 +#CFLAGS += -DDSTART=19 -DDEND=40 -DDATOM=5832 #CFLAGS += -DVDEBUG -#CFLAGS += -DTERSOFF_ORIG -LDFLAGS=-lm +LDFLAGS = -lm +#LDFLAGS += -lefence DEPS = moldyn.o random/random.o list/list.o DEPS += potentials/lennard_jones.o potentials/harmonic_oscillator.o @@ -21,7 +26,7 @@ all: posic sic fluctuation_calc postproc pair_correlation_calc posic: $(DEPS) -sic: $(DEPS) +sic: $(DEPS) config.h postproc: $(DEPS) @@ -29,4 +34,4 @@ pair_correlation_calc: $(DEPS) .PHONY:clean clean: - rm -vf sic postproc fluctuation_calc *.o */*.o + rm -vf sic postproc fluctuation_calc pair_correlation_calc *.o */*.o