10 lines
95 B
Makefile
10 lines
95 B
Makefile
|
all: hello
|
||
|
|
||
|
hello: hello.adb
|
||
|
gnatmake hello.adb
|
||
|
|
||
|
.PHONY: clean
|
||
|
|
||
|
clean:
|
||
|
rm -f *.ali *.o hello
|