head	1.1;
access;
symbols;
locks
	djm:1.1; strict;
comment	@# @;


1.1
date	95.03.01.20.08.00;	author djm;	state Exp;
branches;
next	;


desc
@Makefile for AdaVga bindings
@


1.1
log
@Initial revision
@
text
@###############################################################################
##                                                                           ##
##               Ada95 Bindings to Linux SVGA Library                        ##
##                                                                           ##
##                         Darren J Moffat                                   ##
##                      moffatd@@dcs.gla.ac.uk                                ##
##                                                                           ##
## These bindings may be distributed under the same agreement as holds for   ##
## the current version of SVGALib.  With the additional condition that my    ##
## name must not be removed from any of the Ada source files.                ##
##                                                                           ##
###############################################################################
## Last Modified:


drawtest: svgalib.o svgalibmouse.o drawtest.o
	gnatbl drawtest.ali -lvga

svgalib.o: svgalib.ads svgalib.adb
svgalibgl.o: svgalibgl.ads svgalibgl.adb svgalib.o
svgalibmouse.o: svgalibmouse.ads svgalibmouse.adb
svgalibkeyboard.o: svgalibkeyboard.ads svgalibkeyboard.adb svgalib.o



%.o:	%.adb
	gcc -c $<

clean:
	rm -f *.ali *.o b_* *~
@
