# Use This makefile to create binaries for the lapada specifications, # for use with other applications. # You may not need to do this if you use gnatmake to recompile whatever # your application requires. all: labase.o laaux.o ladrv.o lacmp.o labaseio.o labase.o: labase.ads laaux.o: laaux.ads ladrv.o: ladrv.ads lacmp.o: lacmp.ads labaseio.o: labaseio.adb %.o : %.adb gnat -c $< %.o : %.ads gnat -c $< clean: rm *.ali rm *.o