From fb50ac06508bd71ff43985836d525e725b4a0558 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sun, 7 Nov 2010 21:38:35 -0800 Subject: [PATCH] Add a stupid-simple Makefile --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8034bff --- /dev/null +++ b/Makefile @@ -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)