summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-01-29 14:40:34 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-01-29 14:40:34 -0500
commit6ca7a10796da3afea4dee311b2f48d7190e02fd1 (patch)
treeb42cc986366de9ec3efe4b1dc00dc82fbbd4dd1d /Makefile
parent9e7024c2798f429bcb76c5bb7a2131e1d2ae3ff4 (diff)
mv /etc/libretools.d/pbs{,-convert}.conf
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c3ee3b2..96fe6b2 100644
--- a/Makefile
+++ b/Makefile
@@ -2,18 +2,18 @@ PREFIX=/usr/local
BINPROGS=$(shell find * -type f -executable)
-all: $(BINPROGS) config
+all: $(BINPROGS) pbs-convert.conf
install: $(addprefix $(DESTDIR)$(PREFIX)/bin/,$(BINPROGS)) $(DESTDIR)/etc/libretools.d/pbs.conf
uninstall:
for f in $(BINPROGS); do rm -f $(DESTDIR)$(PREFIX)/bin/$$f; done
- rm -f $(DESTDIR)/etc/libretools.d/pbs.conf
+ rm -f $(DESTDIR)/etc/libretools.d/pbs-convert.conf
$(DESTDIR)$(PREFIX)/bin/%: % | $(DESTDIR)$(PREFIX)/bin
install -m755 '$*' '${@D}'
-$(DESTDIR)/etc/libretools.d/pbs.conf: config | $(DESTDIR)/etc/libretools.d
+$(DESTDIR)/etc/libretools.d/pbs-convert.conf: pbs-convert.conf | $(DESTDIR)/etc/libretools.d
install -m644 '$*' '${@D}'
$(DESTDIR)$(PREFIX)/bin $(DESTDIR)/etc/libretools.d: