diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2012-03-11 18:58:39 +0100 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2012-03-11 18:58:39 +0100 |
commit | a39f265732d0bc28cb66b58b5ecf1964a130d02b (patch) | |
tree | dd75186ba5dab716bad145975dae3f7656cd0eae /Makefile | |
parent | 542edc8b0c5f7fb9d0309484e2697c594a049fe7 (diff) | |
download | graphlcd-base-a39f265732d0bc28cb66b58b5ecf1964a130d02b.tar.gz graphlcd-base-a39f265732d0bc28cb66b58b5ecf1964a130d02b.tar.bz2 |
add conditional variable assignments; correct bug when testing for directory (both suggested/reported by Keine_Ahnung)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,8 +8,8 @@ ARCHIVE = $(PROJECT)-$(VERSION) PACKAGE = $(ARCHIVE) TMPDIR = /tmp -UDEVRULESDIR = /etc/udev/rules.d/ -UDEVRULE = "99-graphlcd-base.rules" +UDEVRULESDIR ?= /etc/udev/rules.d/ +UDEVRULE ?= 99-graphlcd-base.rules ### Targets: @@ -24,7 +24,7 @@ install: @$(MAKE) -C glcddrivers install @$(MAKE) -C glcdskin install @$(MAKE) -C tools install - test -d "${UDEVRULESDIR}" || install -m 644 -o root -g root $(UDEVRULE) $(UDEVRULESDIR) + test -d "${UDEVRULESDIR}" && install -m 644 -o root -g root "$(UDEVRULE)" "$(UDEVRULESDIR)" uninstall: @$(MAKE) -C glcdgraphics uninstall |