mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
11 lines
200 B
Makefile
11 lines
200 B
Makefile
.PHONY: all
|
|
all: helloada
|
|
|
|
helloada: helloada.adb
|
|
gnatmake --GCC=/usr/bin/gcc-7 -g -O0 helloada.adb
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f helloada helloada.o helloada.ali b~* increment_by.ali increment_by.o
|
|
|