This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/script/Makefile.am

33 lines
1.2 KiB
Makefile
Raw Normal View History

2001-08-17 05:46:24 +00:00
## Process this file with automake to produce Makefile.in
SUBDIRS = .
install-exec-local:
2001-08-25 19:53:11 +00:00
@if [ "`id -un`" != "root" ] ; then \
2001-08-17 05:46:24 +00:00
echo; echo " Must be root to install!"; echo; exit 3; \
fi
@if [ ! -x $(sysconfdir)/maint ]; then \
$(INSTALL) -o @OWNER@ -g @GROUP@ -m 0711 maint $(sysconfdir) ; \
echo "$(INSTALL) -o @OWNER@ -g @GROUP@ -m 0711 maint $(sysconfdir)" ; \
fi
@if [ ! -x $(sysconfdir)/midnight ]; then \
$(INSTALL) -o @OWNER@ -g @GROUP@ -m 0711 midnight $(sysconfdir) ; \
echo "$(INSTALL) -o @OWNER@ -g @GROUP@ -m 0711 midnight $(sysconfdir)" ; \
fi
@if [ ! -x $(sysconfdir)/weekly ]; then \
$(INSTALL) -o @OWNER@ -g @GROUP@ -m 0711 weekly $(sysconfdir) ; \
echo "$(INSTALL) -o @OWNER@ -g @GROUP@ -m 0711 weekly $(sysconfdir)" ; \
fi
@if [ ! -x $(sysconfdir)/monthly ]; then \
$(INSTALL) -o @OWNER@ -g @GROUP@ -m 0711 monthly $(sysconfdir) ; \
echo "$(INSTALL) -o @OWNER@ -g @GROUP@ -m 0711 monthly $(sysconfdir)" ; \
fi
2001-10-22 17:33:55 +00:00
$(INSTALL) -o @OWNER@ -g @GROUP@ -m 0755 bbsdoor.sh $(bindir)
$(INSTALL) -o @OWNER@ -g @GROUP@ -m 0755 mem $(bindir)
2001-08-25 19:53:11 +00:00
@bash ./installinit.sh
2001-08-17 05:46:24 +00:00
2001-10-22 17:33:55 +00:00
EXTRA_DIST = README maint midnight weekly monthly installinit.sh rc rc.shutdown \
mbse.start mbse.stop bbsdoor.sh mem
2001-08-17 05:46:24 +00:00