X-Git-Url: https://hackdaworld.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=36c411ef907eece86406a2b9bf0754ff7b26619a;hb=a58211f24f237b51e708b9e8b9fd463a709754a6;hp=b25487e2bde7283e0ba47d5af3357d359324ac55;hpb=2eed6adf57a8fdcfbbeb5afd3b09cdf0085ee341;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index b25487e..36c411e 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CFLAGS = -Wall #CFLAGS += -Wextra -pedantic CFLAGS += -O3 CFLAGS += -g -#CFLAGS += -ffloat-store +CFLAGS += -ffloat-store CFLAGS += -DALBE #CFLAGS += -DTERSOFF_ORIG @@ -22,9 +22,12 @@ 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 +ALL = mdrun sic fluctuation_calc postproc pair_correlation_calc diffusion_calc +ALL += bond_analyze search_bonds visual_atoms -posic: $(DEPS) +all: $(ALL) + +mdrun: $(DEPS) sic: $(DEPS) config.h @@ -32,6 +35,14 @@ postproc: $(DEPS) pair_correlation_calc: $(DEPS) +diffusion_calc: $(DEPS) + +bond_analyze: $(DEPS) + +search_bonds: $(DEPS) + +visual_atoms: $(DEPS) + .PHONY:clean clean: - rm -vf sic postproc fluctuation_calc pair_correlation_calc *.o */*.o + rm -vf $(ALL) *.o */*.o