diff options
author | Kermalis <29823718+Kermalis@users.noreply.github.com> | 2020-11-21 19:01:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-21 18:01:50 -0600 |
commit | d2ac12318644acd563008657c653af7eae248126 (patch) | |
tree | b0f731ad50c981e9d18bfde81ee67b05c7c95157 | |
parent | db6ed3e526baf0018b47dda5a1f6a802c7763a6e (diff) |
Fix Windows build (#1)
-rwxr-xr-x | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |