summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKermalis <29823718+Kermalis@users.noreply.github.com>2020-11-21 19:01:50 -0500
committerGitHub <noreply@github.com>2020-11-21 18:01:50 -0600
commitd2ac12318644acd563008657c653af7eae248126 (patch)
treeb0f731ad50c981e9d18bfde81ee67b05c7c95157
parentdb6ed3e526baf0018b47dda5a1f6a802c7763a6e (diff)
Fix Windows build (#1)
-rwxr-xr-xMakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bcd9003..2c55dcd 100755
--- a/Makefile
+++ b/Makefile
@@ -51,7 +51,7 @@ ALL_OBJECTS := $(C_OBJECTS) $(ASM_OBJECTS)
SUBDIRS := $(sort $(dir $(ALL_OBJECTS)))
ifeq ($(OS),Windows_NT)
-LIB := ../../tools/agbcc/lib/libc.a ../../tools/agbcc/lib/libgcc.a
+LIB := ../../tools/agbcc/lib/libc.a ../../tools/agbcc/lib/libgcc.a ../../libagbsyscall/libagbsyscall.a
else
LIB := -L ../../tools/agbcc/lib -lc -lgcc -L ../../libagbsyscall -lagbsyscall
endif