diff --git a/Makefile b/Makefile index 8116fe5..dab2df8 100644 --- a/Makefile +++ b/Makefile @@ -13,3 +13,7 @@ bin: .PHONY: endpoint endpoint: cd endpoint/; make + +.PHONY: clean +clean: + cd endpoint/; make clean diff --git a/endpoint/Makefile b/endpoint/Makefile index c49731f..3803d4a 100644 --- a/endpoint/Makefile +++ b/endpoint/Makefile @@ -25,3 +25,7 @@ all: ../bin/remailsv $(OFILES) -include $(DFILES) %.o: %.c $(CC) -c $< $(CFLAGS) -o $@ + +.PHONY: clean +clean: + rm -f $(OFILES) $(DFILES)