X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=Makefile;h=28fd2b19ca840a6f8eb083e55801d3986be68564;hb=e84546faff88301a68958b58f66f546b03294503;hp=0e7b1228cd17cacbffb916c17c6d36613190942a;hpb=b5b47daaa3718c4dec2056fe5147668023575b8e;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index 0e7b122..28fd2b1 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,13 @@ CC = gcc CFLAGS = -Wall +#CFLAGS += -Wextra -pedantic CFLAGS += -O3 CFLAGS += -g #CFLAGS += -ffloat-store CFLAGS += -DALBE +#CFLAGS += -DSTATIC_LISTS #CFLAGS += -DDEBUG CFLAGS += -DDSTART=400 -DDEND=600 #CFLAGS += -DVDEBUG @@ -17,7 +19,7 @@ DEPS = moldyn.o random/random.o list/list.o DEPS += potentials/lennard_jones.o potentials/harmonic_oscillator.o DEPS += potentials/tersoff.o potentials/albe.o -all: posic sic fluctuation_calc postproc +all: posic sic fluctuation_calc postproc pair_correlation_calc posic: $(DEPS) @@ -25,6 +27,8 @@ sic: $(DEPS) postproc: $(DEPS) +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