diff --git a/echo/Makefile b/echo/Makefile index 05c4ebb..dba459c 100644 --- a/echo/Makefile +++ b/echo/Makefile @@ -1,11 +1,5 @@ -TARGETS = echo prompt +all: echo prompt -all: $(TARGETS) +echo: echo.c -%: %.c - $(CC) -o $@ $@.c - -clean: - rm -f $(TARGETS) - -.PHONY: all clean +prompt: prompt.c