
OBJECTS7 = add_particles.o interact.o interact32.o collision_7.o init_lat_fhp7.o init_hexagon_fhp7.o print_fhp7.o 

#
# These parargs should yield a nice parabola in Result_Force1.0e-03/profile. But see the file BUG.
#
PARARGS=-DNX=64 -DNY=16 -DTMAX=40000 -DTPRINT=1000 -DPARABOLAS -DCOUNTING -DNEXP=0 -DMINF=0.001 -DMAXF=0.001 -DSOLID_SITES

#PARARGS=-DNX=64 -DNY=16 -DTMAX=40000 -DTPRINT=1000 -DPARABOLAS -DCOUNTING -DNEXP=5 -DMINF=0.0001 -DMAXF=0.001 -DSOLID_SITES -DNREPLICAS=100

CFLAGS = -O3 
BINDIR= $(HOME)/bin

Fhp7_msite:  Fhp7_msite.o   $(OBJECTS7) 
	$(CC) $(CFLAGS) -o Fhp7_msite  Fhp7_msite.o $(OBJECTS7)  -lm

install: Fhp7_msite
	mv Fhp7_msite  $(BINDIR)

clean:
	rm -f *.o *~ profile dumpfile floatfile solid solidm Fhp7_msite  \#*\# Results_Force*

.c.o:   $<  macros_gen.h macros_7.h 
	$(CC) -c $(CFLAGS)  $(PARARGS)  $< 

