X-Git-Url: https://hackdaworld.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=1b19d50171120e788d68e0af830d6d2f00eceb9c;hb=8800ba98083a8e5457b035293999f1c70e780c72;hp=8f0d97c393c26476326d605504f1cc7e12b832e4;hpb=ab49ee162e11085726694b943ae52544b278e31d;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index 8f0d97c..1b19d50 100644 --- a/Makefile +++ b/Makefile @@ -1,27 +1,51 @@ CC = gcc CFLAGS = -Wall +#CFLAGS += -Wextra -pedantic CFLAGS += -O3 CFLAGS += -g -#CFLAGS += -ffloat-store +CFLAGS += -ffloat-store CFLAGS += -DALBE +#CFLAGS += -DTERSOFF_ORIG + +#CFLAGS += -DSTATIC_LISTS + +#CFLAGS += -DNDEBUG #CFLAGS += -DDEBUG +#CFLAGS += -DDSTART=-1 -DDEND=3 -DDATOM=0 #CFLAGS += -DVDEBUG -#CFLAGS += -DTERSOFF_ORIG -LDFLAGS=-lm +LDFLAGS = -lm +#LDFLAGS += -lefence -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 +DEPS += potentials/tersoff.o potentials/albe.o potentials/albe_orig.o + +ALL = mdrun sic fluctuation_calc postproc pair_correlation_calc diffusion_calc +ALL += bond_analyze search_bonds visual_atoms display_atom_data + +all: $(ALL) -all: sic fluctuation_calc postproc +mdrun: $(DEPS) -sic: $(DEPS) +sic: $(DEPS) config.h postproc: $(DEPS) +pair_correlation_calc: $(DEPS) + +diffusion_calc: $(DEPS) + +bond_analyze: $(DEPS) + +search_bonds: $(DEPS) + +visual_atoms: $(DEPS) + +display_atom_data: $(DEPS) + .PHONY:clean clean: - rm -f sic postproc fluctuation_calc + rm -vf $(ALL) *.o */*.o