From ae44478b30d890fe0fb04022f44d474dcdcc3f9d Mon Sep 17 00:00:00 2001 From: Lassi Pulkkinen Date: Thu, 31 Oct 2024 03:11:21 +0200 Subject: Initial commit (import old repo) --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..41a7258 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.POSIX: +.SUFFIXES: + +BIN = hacraft +LIBS = -lc -lSDL2 + +all: $(BIN) + +clean: + rm $(BIN) + +$(BIN): + hare build -o $@ $(LIBS) + +.PHONY: all clean $(BIN) -- cgit v1.2.3