#### webcamd - A webcam Service for multiple Cams and Stream Services. #### #### Written by Stephan Wendel aka KwadFan #### Copyright 2021 #### https://github.com/mainsail-crew/crowsnest #### #### This File is distributed under GPLv3 #### .PHONY: help install unsinstall build buildclean # Setup USER = $(shell whoami) BIN_FOLDER = bin all: help help: @echo "This is intended to install crowsnest." @echo "" @echo "Some Parts need 'sudo' privileges." @echo "You'll be asked for password, if needed." @echo "" @echo " Usage: make [action]" @echo "" @echo " Available actions:" @echo "" @echo " install Installs crowsnest" @echo " uninstall Uninstalls crowsnest" @echo " build builds binaries" @echo " buildclean cleans binaries (for recompile)" @echo "" install: @bash -c 'tools/install.sh' unattended: @bash -c 'tools/install.sh -z' uninstall: @bash -c 'tools/uninstall.sh' build: $(MAKE) -C $(BIN_FOLDER) buildclean: $(MAKE) -C $(BIN_FOLDER) clean