Skip to content

Commit

Permalink
Add a stupid-simple Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
R. Tyler Croy committed Nov 8, 2010
1 parent 06eb9f7 commit fb50ac0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions 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)

0 comments on commit fb50ac0

Please sign in to comment.