fix path to man page
[debian/efibootmgr] / src / module.mk
1 #add our stuff first... our children need to wait for us to finish
2 INSTALLDEPS += bindir_LIST
3
4   MODULES := src/efibootmgr src/lib src/include
5   include $(patsubst %,%/module.mk,$(MODULES))
6
7
8 # Common stuff to copy into the common directories
9 #  Note that the stuff below bindir_LIST is all on one line...
10 bindir_LIST:    
11         @if [ ! -z "$(bindir_TARGETS)" ]; then \
12           echo "R-M-: %attr(0755,root,root) $(BINDIR)" ;\
13           for file in $(bindir_TARGETS) ;\
14           do                                              \
15             echo "-C--: $(BUILDDIR)/$$file $(BINDIR)/"                ;\
16             echo "R---: %attr(0755,root,root) $(BINDIR)/`basename $$file`" ;\
17           done ;\
18           echo  ;\
19         fi
20
21