experimenting include handling

This commit is contained in:
2021-11-14 15:07:41 +00:00
parent 5fcc19de27
commit b118cb2bd3
7 changed files with 136 additions and 79 deletions

View File

@ -2,13 +2,13 @@ OPTS := -gnata -gnatW8 -gnatwa -gnatya -gnatyb -gnatyk -gnatyn -gnatyp ##-gnatyt
all: hello hello2 hello3
hello: hello.adb
gnat make $(OPTS) hello && valgrind ./hello
gnat make $(OPTS) hello
hello2: hello2.adb
gnat make $(OPTS) hello2 && valgrind ./hello2
gnat make $(OPTS) hello2
hello3: hello3.adb
gnat make $(OPTS) hello3 && valgrind ./hello3
gnat make $(OPTS) hello3
clean:
rm -rf *.o *.ali hello hello2 hello3