Update this stupid makefile

This commit is contained in:
R. Tyler Croy 2011-07-26 22:31:06 -07:00
parent 768bb1aad8
commit 1b15371767
1 changed files with 17 additions and 4 deletions

View File

@ -1,14 +1,27 @@
GNATMAKE=gnat make
EXES=readself hello
GNATFLAGS=-gnat05
GNATMAKE=gnat make $(GNATFLAGS)
EXES=readself hello twotasking echoserver vectors echopool
all: $(EXES)
readself:
$(GNATMAKE) readself.adb
$(GNATMAKE) readself.adb
hello:
$(GNATMAKE) hello.adb
$(GNATMAKE) hello.adb
twotasking:
$(GNATMAKE) twotasking.adb
echoserver:
$(GNATMAKE) echoserver.adb
echopool:
$(GNATMAKE) echopool.adb
vectors:
$(GNATMAKE) vectors.adb
clean:
rm -f *.o *.ali