CC = gcc CFLAGS = -Wall -Wextra -std=c11 -O2 -g -fwrapv -pthread LDFLAGS = -lm -pthread .PHONY: all clean remake all: attract clean: rm -f attract *.o remake: clean $(MAKE) --no-print-directory all attract: $(patsubst %.c,%.o,$(wildcard *.c)) $(CC) $(LDFLAGS) -o $@ $^ %.o: %.c $(wildcard *.h) $(CC) $(CFLAGS) -c -o $@ $<