X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=Makefile;h=47670a825c9f5cf3af48675999688c6945ebc9e4;hb=b1c3e2366702a37786ed057c7b56929258890950;hp=0e7b1228cd17cacbffb916c17c6d36613190942a;hpb=b5b47daaa3718c4dec2056fe5147668023575b8e;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index 0e7b122..47670a8 100644 --- a/Makefile +++ b/Makefile @@ -1,30 +1,50 @@ 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 += -DDEBUG -CFLAGS += -DDSTART=400 -DDEND=600 +#CFLAGS += -DDSTART=19 -DDEND=40 -DDATOM=5832 #CFLAGS += -DVDEBUG -#CFLAGS += -DTERSOFF_ORIG -LDFLAGS=-lm +LDFLAGS = -lm +#LDFLAGS += -lefence 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 +ALL = mdrun sic fluctuation_calc postproc pair_correlation_calc diffusion_calc +ALL += bond_analyze search_bonds visual_atoms display_atom_data + +all: $(ALL) -posic: $(DEPS) +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 -vf sic postproc fluctuation_calc *.o */*.o + rm -vf $(ALL) *.o */*.o