X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=Makefile;h=1cc3779f5d42d8ab9a85e812735615937f074d95;hb=7b4610a1a7f7a27c866bf85815c63aeff17978dc;hp=d1b78ec592d6e0209976e969efb23f7c6419348d;hpb=c4955791a40a7eae203b43e71b1d46c89986fc3c;p=physik%2Fposic.git diff --git a/Makefile b/Makefile index d1b78ec..1cc3779 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CC = gcc +CC = gcc-4.3 CFLAGS = -Wall -Winline #CFLAGS += -Wextra -pedantic @@ -6,13 +6,17 @@ CFLAGS += -O3 -march=native -msse2 -mfpmath=sse CFLAGS += -g #CFLAGS += -ffloat-store -#CFLAGS+= -DPARALLEL -fopenmp +#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=-1 -DDEND=40 -DDATOM=0 @@ -32,7 +36,7 @@ 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 +ALL += bond_analyze search_bonds visual_atoms display_atom_data atom_match all: $(ALL) @@ -56,6 +60,8 @@ visual_atoms: $(DEPS) display_atom_data: $(DEPS) +atom_match: $(DEPS) + .PHONY:clean clean: rm -vf $(ALL) *.o */*.o