19 lines
315 B
Makefile
19 lines
315 B
Makefile
FPC = fpc
|
|
|
|
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 \
|
|
trace_m.pas enemy_packs_m.pas
|
|
|
|
all: gohamster
|
|
|
|
play: gohamster
|
|
./gohamster
|
|
|
|
gohamster: $(GAME_SRC)
|
|
$(FPC) $@.pas
|
|
|
|
clean:
|
|
rm *.o *.ppu gohamster
|
|
|
|
|