gh-scrum/src/Makefile

18 lines
311 B
Makefile
Raw Normal View History

2026-02-28 09:28:56 +00:00
FPC = fpc
2026-02-28 10:57:08 +00:00
GAME_SRC = gohamster.pas arena_m.pas cell_m.pas creature_m.pas debug_m.pas \
ghost_m.pas graphics_m.pas hamster_m.pas keys_m.pas math_m.pas \
2026-02-28 11:05:48 +00:00
trace_m.pas _banners_m.pas
2026-02-28 09:28:56 +00:00
all: gohamster
play: gohamster
./gohamster
gohamster: $(GAME_SRC)
$(FPC) $@.pas
clean:
2026-02-28 10:57:08 +00:00
rm *.o *.ppu gohamster
2026-02-28 11:05:48 +00:00