CC = gcc CFLAGS = -Wall -Wextra -std=c11 -O3 -fwrapv TARGET = batwarn_daemon .PHONY: all clean all: $(TARGET) clean: rm -f $(TARGET)