From 556c8f331856263f991cae4791e09606496bd474 Mon Sep 17 00:00:00 2001 From: Jason Skomorowski Date: Mon, 10 Nov 2014 10:05:17 -0500 Subject: [PATCH] Make Makefile compatible with Make 4.x MKWS-331 Removes catch-all rule to remove $DEST and copy things over it. --- src/Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Makefile b/src/Makefile index 51f399e..f2f10b9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -79,11 +79,6 @@ $(DEST)/${PP2_FILE}: curl -sSf "${PP2_URL}" -o $@.tmp mv -f $@.tmp $@ -$(DEST)/%: % - rm -f $@ - cp $? $@ - chmod 444 $@ - release: $(RELEASABLE) @if [ -f ${DEST}/releases/mkws-$(VERSION).js ]; then \ echo "*** There is already a release $(VERSION)"; \ -- 1.7.10.4