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

View File

@@ -6,16 +6,10 @@ CFLAGS = -Wall -Wextra -Werror -std=c11 -O2
SRCS = bin2c.c
ifeq ($(OS),Windows_NT)
EXE := .exe
else
EXE :=
endif
all: bin2c$(EXE)
all: bin2c
@:
bin2c$(EXE): $(SRCS)
bin2c: $(SRCS)
$(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean: