Revert multiple source change commits for rebase.

This commit is contained in:
luckytyphlosion
2020-12-16 13:29:02 -05:00
parent aad94c3433
commit cc5db41f30
17 changed files with 121 additions and 196 deletions
+2 -8
View File
@@ -8,16 +8,10 @@ SRCS = main.c convert_png.c util.c font.c
.PHONY: all clean
ifeq ($(OS),Windows_NT)
EXE := .exe
else
EXE :=
endif
all: rsfont$(EXE)
all: rsfont
@:
rsfont$(EXE): $(SRCS) convert_png.h gfx.h global.h util.h font.h
rsfont: $(SRCS) convert_png.h gfx.h global.h util.h font.h
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) $(LIBS)
clean: