You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
|
|
topdir=$(shell pwd)/..
|
|
include $(topdir)/Make.Rules
|
|
#
|
|
# Programs: all of the examples that we will compile
|
|
#
|
|
PROGS=getpcaps capsh getcap setcap
|
|
|
|
BUILD=$(PROGS)
|
|
|
|
all: $(BUILD)
|
|
|
|
ifeq ($(DYNAMIC),yes)
|
|
LDPATH = LD_LIBRARY_PATH=../libcap
|
|
DEPS = ../libcap/libcap.so
|
|
else
|
|
LDFLAGS += --static
|
|
DEPS = ../libcap/libcap.a
|
|
endif
|
|
|
|
../libcap/libcap.a:
|
|
make -C ../libcap libcap.a
|
|
|
|
../libcap/libcap.so:
|
|
make -C ../libcap libcap.so
|
|
|
|
$(BUILD): %: %.o $(DEPS)
|
|
$(CC) $(CFLAGS) -o $@ $< $(LIBCAPLIB) $(LDFLAGS)
|
|
|
|
%.o: %.c $(INCS)
|
|
$(CC) $(IPATH) $(CAPSH_SHELL) $(CFLAGS) -c $< -o $@
|
|
|
|
install: all
|
|
mkdir -p -m 0755 $(FAKEROOT)$(SBINDIR)
|
|
for p in $(PROGS) ; do \
|
|
install -m 0755 $$p $(FAKEROOT)$(SBINDIR) ; \
|
|
done
|
|
ifeq ($(RAISE_SETFCAP),yes)
|
|
$(FAKEROOT)$(SBINDIR)/setcap cap_setfcap=i $(FAKEROOT)$(SBINDIR)/setcap
|
|
endif
|
|
|
|
test: $(PROGS)
|
|
|
|
tcapsh-static: capsh.c $(DEPS)
|
|
$(CC) $(IPATH) $(CAPSH_SHELL) $(CFLAGS) -o $@ $< $(LIBCAPLIB) $(LDFLAGS) --static
|
|
|
|
sudotest: test tcapsh-static
|
|
sudo $(LDPATH) ./quicktest.sh
|
|
|
|
clean:
|
|
$(LOCALCLEAN)
|
|
rm -f *.o $(BUILD) tcapsh* privileged ping hack.sh compare-cap
|