aboutsummaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
authorJuan J. Martínez <jjm@usebox.net>2022-05-25 06:11:32 +0000
committerJuan J. Martínez <jjm@usebox.net>2022-05-25 06:11:32 +0000
commit15a7f7e4bda1a022a9e871b6c57fa7a7be22eb74 (patch)
tree401393be14ccf27b3d1f0adf71bf4716839d02b4 /game
parent39bd26a83749aaf5167de6af89161a3f8ef0c36b (diff)
parent89b67a7092ed6aae966b356d0cdb8607e51e2c4e (diff)
downloadubox-msx-lib-15a7f7e4bda1a022a9e871b6c57fa7a7be22eb74.tar.gz
ubox-msx-lib-15a7f7e4bda1a022a9e871b6c57fa7a7be22eb74.zip
Merge branch 'main' into 'master'
fixed docs and comment See merge request reidrac/ubox-msx-lib!30
Diffstat (limited to 'game')
-rw-r--r--game/src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/Makefile b/game/src/Makefile
index fef5f24..b05ef4e 100644
--- a/game/src/Makefile
+++ b/game/src/Makefile
@@ -12,7 +12,7 @@ TMPDIR := ../build
# will automatically include (and compile) any .c or .z80 file
OBJS := $(patsubst %.c,$(TMPDIR)/%.rel,$(wildcard *.c)) $(patsubst %.z80,$(TMPDIR)/%.rel,$(wildcard *.z80))
# crt0.z80 is compiled as requirement of the targets and MUST be linked first,
-# so we exlude it from the list of user-provided source
+# so we exclude it from the list of user-provided source
OBJS := $(filter-out $(TMPDIR)/crt0.rel,$(OBJS))
UBOX_LIBS := $(wildcard ../../lib/*.lib)