Apply all source related changes for the new INSTALL.md in one commit.

For people who want to have dkPless builds in their repo.
This commit is contained in:
luckytyphlosion
2020-12-16 15:10:01 -05:00
parent 34fc9789c9
commit 936ba7f1bf
17 changed files with 199 additions and 121 deletions
+8 -2
View File
@@ -3,10 +3,16 @@ CC ?= gcc
SRCS = gbafix.c
all: gbafix
ifeq ($(OS),Windows_NT)
EXE := .exe
else
EXE :=
endif
all: gbafix$(EXE)
@:
gbafix: $(SRCS)
gbafix$(EXE): $(SRCS)
$(CC) $(SRCS) -o $@ $(LDFLAGS)
clean: