TARGETS = echo prompt

all: $(TARGETS)

%: %.c
	$(CC) -o $@ $@.c

clean:
	rm -f $(TARGETS)

.PHONY: all clean
