Allow a user to specify a directory PREFIX (like /usr/local) for jhalfs if they like
This commit is contained in:
parent
8f96017874
commit
f8655e14b9
1 changed files with 3 additions and 2 deletions
5
Makefile
5
Makefile
|
@ -1,9 +1,10 @@
|
||||||
# Makefile to install jhalfs system-wide
|
# Makefile to install jhalfs system-wide
|
||||||
|
|
||||||
# Where the files will be installed
|
# Where the files will be installed
|
||||||
BIN=/usr/bin
|
PREFIX=/usr
|
||||||
|
BIN=$(PREFIX)/bin
|
||||||
CONFIG=/etc/jhalfs
|
CONFIG=/etc/jhalfs
|
||||||
DATA=/usr/share/jhalfs
|
DATA=$(PREFIX)/share/jhalfs
|
||||||
|
|
||||||
# List of additional files
|
# List of additional files
|
||||||
DATAFILES=functions dump-lfs-scripts.xsl README
|
DATAFILES=functions dump-lfs-scripts.xsl README
|
||||||
|
|
Reference in a new issue