TARGETS = simexec all: $(TARGETS) clean: rm -f $(TARGETS) sane: all %: %.c $(CC) -o $@ $@.c .PHONY: all clean sane