X-Git-Url: https://hackdaworld.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=c839759237846919adfef7fb51afa4ff51c9f2f4;hb=155e1cfea83209d09c2a06ae4fb7f5e1652fc00a;hp=1b875fedbc3c15e60eff45ceeefaf89f63fc935a;hpb=30fafe0cb366808315649bd07bfaa7133ca0ecd2;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index 1b875fe..c839759 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,10 @@ 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 pair_correlation_calc diffusion_calc +ALL = posic sic fluctuation_calc postproc pair_correlation_calc diffusion_calc +ALL += bond_analyze + +all: $(ALL) posic: $(DEPS) @@ -34,6 +37,8 @@ pair_correlation_calc: $(DEPS) diffusion_calc: $(DEPS) +bond_analyze: $(DEPS) + .PHONY:clean clean: - rm -vf sic postproc fluctuation_calc pair_correlation_calc *.o */*.o + rm -vf $(ALL) *.o */*.o