include  $(COSMOSTOP)/site.config

.PHONY: all clean cs2lp chncol chacoladhoc drawhncol



all:
	@echo "--- Use one of following---:"
	@echo "make cs2lp           For testing cs2lp"
	@echo "make chncol          For testing chncol"
	@echo "make ua5             For testing ua5"
	@echo "make chncol2         For testing chncol with x=p//*/P*max"
	@echo "make chacoladhoc     For testing chAcolAdhoc"
	@echo "make drawhncol       For puting data to draw hn collisions"
	@echo "make AAcol           For testing AA collision"

cs2lp:  
	$(MAKE) -f cs2lp.mk cs2lp
	
   
chncol: 
	$(MAKE) -f chncol.mk chncol
ua5:
	$(MAKE) -f ua5.mk ua5
chncol2: 
	$(MAKE) -f chncol2.mk chncol2

chacoladhoc:
	$(MAKE) -f chAcolAdhoc.mk chacoladhoc

drawhncol:
	$(MAKE) -f drawhncol.mk  drawhncol
AAcol:
	$(MAKE) -f caAcol.mk  AAcol
clean:
	/bin/rm  -f *.o *.out  *.out.trace  core  *~ temp*

