# Cyclone Makefile

build:	
	cd src && ./configure && $(MAKE)

build-nocheck:
	cd src && $(MAKE) nocheck

all_prof:
	cd src && ./configure
	$(MAKE) -C src all
	$(MAKE) -C src nocheck
	$(MAKE) -C src prof
	$(MAKE) -C src NOGC=y nogc_prof

clean:
	cd src && $(MAKE) distclean
