include ../../config.mak ser: .PHONY: install install: ifdef BIN_DIR install -m 0755 ser $(BIN_DIR) endif .PHONY: uninstall uninstall: ifdef BIN_DIR rm $(BIN_DIR)/ser endif clean: