From 250a331df9dbd312d572aaf0d629503417cfc9d4 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Thu, 11 Jul 2019 21:16:23 -0400 Subject: Track tools srcs --- tools/bin2c/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tools/bin2c/Makefile (limited to 'tools/bin2c/Makefile') diff --git a/tools/bin2c/Makefile b/tools/bin2c/Makefile new file mode 100644 index 0000000..73f7898 --- /dev/null +++ b/tools/bin2c/Makefile @@ -0,0 +1,13 @@ +CC = gcc + +CFLAGS = -Wall -Wextra -Werror -std=c11 -O2 + +.PHONY: clean + +SRCS = bin2c.c + +bin2c: $(SRCS) + $(CC) $(CFLAGS) $(SRCS) -o $@ $(LDFLAGS) + +clean: + $(RM) bin2c bin2c.exe -- cgit v1.2.3