summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c7cd9e3..0eee797 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ LDFLAGS := ./vendor/$(RAYLIB_VER)/lib/libraylib.a -lm
16GAME := bin/stalag 16GAME := bin/stalag
17HEXDUMP := bin/hexdump 17HEXDUMP := bin/hexdump
18PACKER := bin/packer 18PACKER := bin/packer
19SOURCES := main.c map.c game.c 19SOURCES := main.c map.c game.c player.c
20 20
21ifeq ($(SYSTEM), linux_amd64) 21ifeq ($(SYSTEM), linux_amd64)
22 LDFLAGS += -lX11 22 LDFLAGS += -lX11
@@ -47,7 +47,7 @@ $(PACKER): tools/packer.c
47 $(CC) -std=c99 -o $(PACKER) tools/packer.c 47 $(CC) -std=c99 -o $(PACKER) tools/packer.c
48 48
49data: $(PACKER) 49data: $(PACKER)
50 $(PACKER) -p data.pak textures maps 50 $(PACKER) -p data.pak textures maps fonts
51 51
52mkdirs: 52mkdirs:
53 mkdir -p bin 53 mkdir -p bin