CC=gcc CFLAGS=-Wall all: perf1 perf2 perf1: perf1.c $(CC) -o $@ $^ $(CFLAGS) perf2: perf2.c $(CC) -o $@ $^ $(CFLAGS) .PHONY: clean clean: rm -f perf1 perf2