CC := gcc CFLAGS := -O3 -Wno-unused-result C_FILES := $(wildcard *.c) H_FILES := $(wildcard *.h) .PHONY: all clean all: elfcoder @: elfcoder: $(C_FILES) $(H_FILES) $(CC) $(CFLAGS) $(C_FILES) -o elfcoder clean: $(RM) elfcoder