Add a stupid-simple Makefile

This commit is contained in:
R. Tyler Croy 2010-11-07 21:38:35 -08:00
parent 06eb9f7b5b
commit fb50ac0650
1 changed files with 15 additions and 0 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
GNATMAKE=gnat make
EXES=readself hello
all: $(EXES)
readself:
$(GNATMAKE) readself.adb
hello:
$(GNATMAKE) hello.adb
clean:
rm -f *.o *.ali
rm -f $(EXES)