32 lines
412 B
Makefile
32 lines
412 B
Makefile
# watchman makefile
|
|
VERSION=1.6.9
|
|
|
|
# Please modify config.mk and not this
|
|
sinclude config.mk
|
|
|
|
.PHONY: clean install uninstall all
|
|
|
|
build: rc
|
|
|
|
all: build
|
|
|
|
rc: rc.in
|
|
sed -r \
|
|
-e 's%@ETC@%$(ETC)%' \
|
|
rc.in > rc
|
|
|
|
chmod 750 $@
|
|
|
|
clean:
|
|
rm rc
|
|
|
|
install: build
|
|
install -dm755 $(BINDIR)
|
|
install -dm755 $(ETCDIR)
|
|
|
|
install -m750 rc $(BINDIR)/rc
|
|
install -m644 rc.conf $(ETCDIR)/rc.conf
|
|
|
|
uninstall:
|
|
rm $(BINDIR)/rc
|