blob: 6cae230898e941a0d43452083a41bbcc30e8ae08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
progs = checkpkg find-libdeps finddeps lddd
copy_files = $(addsuffix .in,$(progs))
install_files = $(DESTDIR)$(bindir)/find-libprovides
include ../../common.mk
# Build ##############################################################
%: %.in Makefile
@echo "GEN $@"
@$(edit) <"$<" >"$@" || { rm -f -- '$@'; false; }
@chmod 755 "$@" || { rm -f -- '$@'; false; }
# Install ############################################################
$(DESTDIR)$(bindir)/find-libprovides:
install -d $(@D)
ln -sf find-libdeps $@
|