summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-06-24 00:37:25 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-06-24 00:37:25 -0400
commit9651234b574078a0bb5b54a5f8c70d9e1b1a767a (patch)
treee2e56152b65fcab85931d663640fded98e5fbc14
parent6d733c6596b16b5649ea7f91aac1c95ba445f348 (diff)
I am a dummyv20140624
-rw-r--r--Makefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 00fb659..e5d16bc 100644
--- a/Makefile
+++ b/Makefile
@@ -27,9 +27,15 @@ targets = \
$(DESTDIR)$(systemddir)/parabolaweb.service \
$(DESTDIR)$(systemddir)/parabolaweb-reporead-inotify.service
-all: depends.txt $(notdir $(targets)) parabolaweb.conf
+all: PHONY depends.txt $(notdir $(targets)) parabolaweb.conf
-install: $(targets) $(sysconffile)
+install: PHONY $(targets) $(sysconffile)
+
+uninstall: PHONY
+ $(RM) $(targets) $(sysconffile)
+
+clean: PHONY
+ $(RM) $(notdir $(targets)) depends.txt
# Pattern rules
@@ -48,7 +54,7 @@ $(DESTDIR)$(systemddir)/%.service: %.service
# Specific rules
depends.txt: list-depends depends_static.txt
- $< > $@
+ ./$< > $@
$(DESTDIR)$(sbindir)/parabolaweb-changepassword: parabolaweb-changepassword
install -Dm6755 $< $@
@@ -57,3 +63,4 @@ $(DESTDIR)(pkgconffile): parabolaweb.conf
install -Dm644 $< $@
.DELETE_ON_ERROR:
+.PHONY: PHONY