X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=Makefile;h=1cc3779f5d42d8ab9a85e812735615937f074d95;hb=7b4610a1a7f7a27c866bf85815c63aeff17978dc;hp=28fd2b19ca840a6f8eb083e55801d3986be68564;hpb=e84546faff88301a68958b58f66f546b03294503;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index 28fd2b1..1cc3779 100644 --- a/Makefile +++ b/Makefile @@ -1,34 +1,67 @@ -CC = gcc +CC = gcc-4.3 -CFLAGS = -Wall +CFLAGS = -Wall -Winline #CFLAGS += -Wextra -pedantic -CFLAGS += -O3 +CFLAGS += -O3 -march=native -msse2 -mfpmath=sse CFLAGS += -g #CFLAGS += -ffloat-store +#CFLAGS += -DPARALLEL -fopenmp +#CFLAGS += -DPTHREADS -lpthread +#CFLAGS += -DVISUAL_THREAD -lpthread +CFLAGS += -DPTHREADS -DVISUAL_THREAD -lpthread + CFLAGS += -DALBE +CFLAGS += -DALBE_FAST +#CFLAGS += -DTERSOFF_ORIG + #CFLAGS += -DSTATIC_LISTS +CFLAGS += -DLOWMEM_LISTS + #CFLAGS += -DDEBUG -CFLAGS += -DDSTART=400 -DDEND=600 +#CFLAGS += -DDSTART=-1 -DDEND=40 -DDATOM=0 #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 +DEPS += potentials/albe_fast.o + +SRC = moldyn.c random/random.c list/list.c +SRC += potentials/lennard_jones.c potentials/harmonic_oscillator.c +SRC += potentials/tersoff.c potentials/albe.c +SRC += potentials/albe_fast.c + +ALL = mdrun sic fluctuation_calc postproc pair_correlation_calc diffusion_calc +ALL += bond_analyze search_bonds visual_atoms display_atom_data atom_match -all: posic sic fluctuation_calc postproc pair_correlation_calc +all: $(ALL) -posic: $(DEPS) +# main code. using SRC, much more efficient code is produced! +mdrun: $(SRC) +#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) + +atom_match: $(DEPS) + .PHONY:clean clean: - rm -vf sic postproc fluctuation_calc pair_correlation_calc *.o */*.o + rm -vf $(ALL) *.o */*.o