9 lines
91 B
Makefile
9 lines
91 B
Makefile
|
all: exp
|
||
|
|
||
|
exp: exp.adb
|
||
|
gnatmake -gnat95 $<
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -f *.o *.ali cl4 b~*
|