Files
hackacad/Makefile

29 lines
770 B
Makefile
Raw Normal View History

.PHONY: all
all:
2019-12-23 09:48:02 +01:00
@echo "Nothing to be done. Please use make install or make uninstall"
2019-11-28 09:21:13 -07:00
.PHONY: install
install:
@echo "Installing Bastille"
@echo
@cp -Rv usr /
2019-11-28 09:21:13 -07:00
@echo
@echo "This method is for testing / development."
.PHONY: uninstall
uninstall:
@echo "Removing Bastille command"
@rm -vf /usr/local/bin/bastille
@echo
@echo "Removing Bastille sub-commands"
@rm -rvf /usr/local/share/bastille
@echo
2020-02-05 19:02:19 -07:00
@echo "removing man page"
@rm -rvf /usr/local/share/man/man1/bastille.1.gz
@echo
2019-11-28 09:21:13 -07:00
@echo "removing configuration file"
@rm -rvf /usr/local/etc/bastille/bastille.conf.sample
2019-11-28 09:21:13 -07:00
@echo
@echo "removing startup script"
@rm -vf /usr/local/etc/rc.d/bastille
@echo "You may need to manually remove /usr/local/etc/bastille/bastille.conf if it is no longer needed."