4 SUBDIRS = util d-link libdl # man
8 set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d ; done
11 install -d $(INSTALL_DIR)/lib
12 install -d $(INSTALL_DIR)/etc
13 install -m 755 ./d-link/$(DLINKER).$(LDSO_VMAJOR) $(INSTALL_DIR)/lib/
14 install -m 644 ./libdl/$(LIBDL).$(LDSO_VMAJOR) $(INSTALL_DIR)/lib/
15 (cd $(INSTALL_DIR)/lib/;ln -sf $(DLINKER).$(LDSO_VMAJOR) $(DLINKER))
16 (cd $(INSTALL_DIR)/lib/;ln -sf $(LIBDL).$(LDSO_VMAJOR) $(LIBDL))
19 set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d $@ ; done
20 -find . -name '*~' | xargs rm -f