Oops
This commit is contained in:
31
Makefile
Normal file
31
Makefile
Normal file
@@ -0,0 +1,31 @@
|
||||
# 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
|
Reference in New Issue
Block a user