From c233d1b454efc50f913dd48fa11d223950f48947 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 30 Nov 2022 21:17:22 +0100 Subject: Switch from meson to Makefile A Makefile is enough for this project because it has a very simpel structure. The additional complexity of meson is not necessary and furthermore I am more used to Makefiles. --- 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..18bde1e --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: all clean + +all: build + gcc main.c gui.c xmpp.c -o build/limox -lSDL2 + +build: + mkdir -p build + +clean: + rm -rf build -- cgit v1.2.3-70-g09d2