X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=Makefile;h=73645df0606362e59a2d6259400aefb0fc79edf1;hb=dff2917d22ed07707d222bc10fab7370356699dc;hp=8f0d97c393c26476326d605504f1cc7e12b832e4;hpb=ab49ee162e11085726694b943ae52544b278e31d;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index 8f0d97c..73645df 100644 --- a/Makefile +++ b/Makefile @@ -7,21 +7,26 @@ CFLAGS += -g CFLAGS += -DALBE #CFLAGS += -DDEBUG +CFLAGS += -DDSTART=400 -DDEND=600 #CFLAGS += -DVDEBUG #CFLAGS += -DTERSOFF_ORIG LDFLAGS=-lm -DEPS = moldyn.o visual/visual.o random/random.o list/list.o +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: sic fluctuation_calc postproc +all: posic sic fluctuation_calc postproc pair_correlation_calc + +posic: $(DEPS) sic: $(DEPS) postproc: $(DEPS) +pair_correlation_calc: $(DEPS) + .PHONY:clean clean: - rm -f sic postproc fluctuation_calc + rm -vf sic postproc fluctuation_calc *.o */*.o