Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
prefix=
ifeq "$(prefix)" ""
root_prefix=
usr_prefix=/usr
usrlocal_prefix=/usr/local
else
root_prefix=$(prefix)
usr_prefix=$(prefix)
usrlocal_prefix=$(prefix)
endif
root_exec_prefix=$(root_prefix)
root_bindir=$(root_exec_prefix)/bin
root_sbindir=$(root_exec_prefix)/sbin
usr_exec_prefix=$(usr_prefix)
usr_bindir=$(usr_exec_prefix)/bin
usr_sbindir=$(usr_exec_prefix)/sbin
usrlocal_exec_prefix=$(usrlocal_prefix)
usrlocal_bindir=$(usrlocal_exec_prefix)/bin
usrlocal_sbindir=$(usrlocal_exec_prefix)/sbin
sysconfdir=$(prefix)/etc
systemdunitdir=$(sysconfdir)/systemd/system
udev_rulesdir=$(sysconfdir)/udev/rules.d
udev_helperdir=$(prefix)/lib/udev
srcdir=.
INSTALL=install -v
INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = $(INSTALL) -m 644
all: setuid
clean:
@rm setuid 2>/dev/null || true
install: all
$(INSTALL) -D -t $(DESTDIR)$(usr_sbindir) setuid
.PHONY: all clean install