From 1e0d8e2f64ee03027439a111267a46d143ea5430 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Fri, 10 Jul 2015 03:22:10 -0400 Subject: add a Makefile in lisc --- lisc/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lisc/Makefile diff --git a/lisc/Makefile b/lisc/Makefile new file mode 100644 index 0000000..14cf562 --- /dev/null +++ b/lisc/Makefile @@ -0,0 +1,11 @@ +BIN = lisc +OBJ = parse.o + +CFLAGS = -Wall -Wextra -std=c99 -g + +$(BIN): $(OBJ) + $(CC) $(LDFLAGS) $(OBJ) -o $@ + +.PHONY: clean +clean: + rm -f $(BIN) $(OBJ) -- cgit 1.4.1