.POSIX: .SUFFIXES: BIN = hacraft LIBS = -lc -lSDL2 all: $(BIN) clean: rm $(BIN) $(BIN): hare build -o $@ $(LIBS) .PHONY: all clean $(BIN)