mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
11 lines
282 B
Makefile
11 lines
282 B
Makefile
|
|
.PHONY: all
|
||
|
|
all: helloadaexceptions
|
||
|
|
|
||
|
|
helloadaexceptions: helloadaexceptions.adb
|
||
|
|
/usr/bin/gnatmake-9 -g --GNATBIND=/usr/bin/gnatbind-9 --GNATLINK=/usr/bin/gnatlink-9 helloadaexceptions
|
||
|
|
|
||
|
|
.PHONY: clean
|
||
|
|
clean:
|
||
|
|
rm -f helloadaexceptions helloadaexceptions.o helloadaexceptions.ali b~*
|
||
|
|
|