Allow OS to define default package locations.

This commit is contained in:
Roy Marples
2008-01-11 10:55:36 +00:00
parent 349f4a81e6
commit 13c552c3ec
18 changed files with 54 additions and 40 deletions

View File

@@ -1,5 +1,25 @@
DIR = /etc/init.d
BIN = $(CONTENTS)
DIR= /etc/init.d
_SRCS!= ls *.in
SRCS?= ${_SRCS}$(shell ls *.in)
OBJS= ${SRCS:.in=}
TOPDIR = ..
include $(TOPDIR)/default.mk
MK= ../mk
include ${MK}/os.mk
include Makefile.${OS}
VARBASE?= /var
.SUFFIXES: .in
all: ${OBJS}
.in:
sed -e s':@PREFIX@:${PREFIX}:' -e 's:@VARBASE@:${VARBASE}:' $< > $@
install: all
for x in ${OBJS}; do \
${INSTALL} work/$$x ${DESTDIR}${DIR}; \
done
clean:
rm -f ${OBJS}