18 lines
443 B
Makefile
18 lines
443 B
Makefile
|
|
default: sillymachine
|
|
|
|
sillymachine: ./src/sillymachine.adb ./src/*.adb ./src/*.ads
|
|
gnatmake ./src/sillymachine.adb
|
|
|
|
debug: ./src/sillymachine.adb ./src/*.adb ./src/*.ads
|
|
gnatmake ./src/sillymachine.adb -o sillymachine-debug -g
|
|
|
|
win: ./src/sillymachine.adb ./src/*.adb ./src/*.ads
|
|
|
|
x86_64-w64-mingw32-gnatmake src/sillymachine.adb -lwinmm -lgdi32
|
|
|
|
all: sillymachine sillymachine.exe
|
|
|
|
clean:
|
|
rm *.o *.ali sillymachine.exe sillymachine
|