## This is an example makefile to employ
## the Allegro simple application makefile.
## Either write a similar one or copy this
## one along with makefile.al to your
## projects directory and edit it to suit
## your needs. Don't forget to create the
## filestructure.
#export LD_LIBRARY_PATH=/home/brandon/breakout:$LD_LIBRARY_PATH

OBJ$ =	breakout.o		\
	ball.o		\
	blocks.o	\
	rectangle.o		

	
HEAD$ =	ball.h		\
	blocks.h		\
	rectangle.h		


EXTRAC$ = 
LIB-MGW$   =
LIB-DJGPP$ =
LIB-UNIX$  =
DEBUG-MGW$   =
DEBUG-DJGPP$ =
DEBUG-UNIX$  =

OBJDIR$ = ../
EXEN$ = ../xtype
LIBI$ = 
LIBO$ = $(LIBI)

include makefile.al
