From 6155d919c78a767ea4e503c48fd60d5186c2c546 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Fri, 1 Feb 2019 23:59:57 -0500 Subject: initial commit --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3873d7b --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CFLAGS=-W -Wall -Wextra -pedantic -std=c11 -O2 +OBJS=km.o + +all: $(OBJS) + +%.o: %.c + $(CC) -c $(CFLAGS) $< + +clean: + $(RM) $(OBJS) -- cgit v1.2.3