1 2 3 4 5 6 7 8 9 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