2022-08-23 10:13:02 +00:00
|
|
|
OPTS := -gnata -gnatW8 -gnatwa -gnatya -gnatyb -gnatyk -gnatyn -gnatyp -gnat2005 ##-gnatyt
|
2021-10-27 15:34:30 +00:00
|
|
|
all: hello hello2 hello3
|
|
|
|
|
|
|
|
hello: hello.adb
|
2021-11-14 15:07:41 +00:00
|
|
|
gnat make $(OPTS) hello
|
2021-10-27 15:34:30 +00:00
|
|
|
|
|
|
|
hello2: hello2.adb
|
2021-11-14 15:07:41 +00:00
|
|
|
gnat make $(OPTS) hello2
|
2021-10-27 15:34:30 +00:00
|
|
|
|
|
|
|
hello3: hello3.adb
|
2021-11-14 15:07:41 +00:00
|
|
|
gnat make $(OPTS) hello3
|
2021-10-27 15:34:30 +00:00
|
|
|
|
|
|
|
clean:
|
2021-11-17 01:59:59 +00:00
|
|
|
gnat clean hello
|
|
|
|
gnat clean hello2
|
|
|
|
gnat clean hello3
|
|
|
|
|