#	Makefile automatically created from project file
#	Don't forget to update if you change your header dependencies

#	Change this to set what compiler options you need
PREFIX = /boot/develop/headers/be/BeHeaders
CC = mwcc 
COPTS = -c -O5 -prefix $(PREFIX)

#	This is the file to generate
TARGET = Application

#	This is the objects folder
OBJFOLDER = obj

#	main target
all:	$(OBJFOLDER) $(TARGET)

#	Prefix rule
$(PREFIX):	$(PREFIX).pch++
	$mwcc -precompile $(PREFIX) $(PREFIX).pch++

#	Create the folder
$(OBJFOLDER):
	mkdir $(OBJFOLDER)

clean:
	-rm -rf $(OBJFOLDER) $(TARGET)
