19 lines
422 B
Makefile
19 lines
422 B
Makefile
|
|
SUBDIRS = init.d
|
|
|
|
EXTRA_DIST = README mt-daapd.spec mt-daapd.conf.templ mt-daapd-ssc.sh mt-daapd-ssc.pl
|
|
|
|
BUILT_SOURCES = mt-daapd.conf
|
|
bin_SCRIPTS = mt-daapd-ssc.sh
|
|
|
|
dbdir="$(localstatedir)/cache/mt-daapd"
|
|
|
|
mt-daapd.conf: mt-daapd.conf.templ ../config.h
|
|
sed -e s,[@]prefix[@],$(prefix), \
|
|
-e s,[@]sysconfdir[@],$(sysconfdir), \
|
|
-e s,[@]libdir[@],$(libdir), \
|
|
-e s,[@]dbdir[@],$(dbdir),g mt-daapd.conf.templ >$@
|
|
|
|
|
|
|