X-Git-Url: https://hackdaworld.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=1b19d50171120e788d68e0af830d6d2f00eceb9c;hb=2076649dc4067af11bfeabc4ef3f353420b3df14;hp=1b875fedbc3c15e60eff45ceeefaf89f63fc935a;hpb=30fafe0cb366808315649bd07bfaa7133ca0ecd2;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index 1b875fe..1b19d50 100644 --- a/Makefile +++ b/Makefile @@ -11,8 +11,9 @@ CFLAGS += -DALBE #CFLAGS += -DSTATIC_LISTS +#CFLAGS += -DNDEBUG #CFLAGS += -DDEBUG -#CFLAGS += -DDSTART=19 -DDEND=40 -DDATOM=5832 +#CFLAGS += -DDSTART=-1 -DDEND=3 -DDATOM=0 #CFLAGS += -DVDEBUG LDFLAGS = -lm @@ -20,11 +21,14 @@ LDFLAGS = -lm 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: posic sic fluctuation_calc postproc pair_correlation_calc diffusion_calc +ALL = mdrun sic fluctuation_calc postproc pair_correlation_calc diffusion_calc +ALL += bond_analyze search_bonds visual_atoms display_atom_data -posic: $(DEPS) +all: $(ALL) + +mdrun: $(DEPS) sic: $(DEPS) config.h @@ -34,6 +38,14 @@ pair_correlation_calc: $(DEPS) diffusion_calc: $(DEPS) +bond_analyze: $(DEPS) + +search_bonds: $(DEPS) + +visual_atoms: $(DEPS) + +display_atom_data: $(DEPS) + .PHONY:clean clean: - rm -vf sic postproc fluctuation_calc pair_correlation_calc *.o */*.o + rm -vf $(ALL) *.o */*.o