BINARIES = bin/cf bin/client $(CLIENT_SSL) $(CLIENT_GNUTLS) \
bin/checkaccess bin/fakens bin/fd bin/iefbr14 $(LOADED) \
- bin/mtpscript bin/server bin/showids
+ bin/mtpscript bin/server bin/showids bin/locate
# List of targets
binaries: $(BINARIES)
-sysbinaries: FRC
- bin/locate.sh initdb postgres pg_ctl mysqld
+sysbinaries: FORCE
+ sh -x bin/locate initdb postgres pg_ctl mysqld
ls -la bin.sys
# Compile and link the programs:
bin/showids: $(SRC)/showids.c Makefile
$(CC) $(CFLAGS) $(LDFLAGS) -o bin/showids $(SRC)/showids.c
+bin/locate: $(SRC)/locate.sh Makefile
+ install -m 0755 $(SRC)/locate.sh bin/locate
+
clean:; rm -rf $(BINARIES) bin.sys
-FRC:
+FORCE:
# End
+++ /dev/null
-#!/bin/sh
-
-[ -d bin.sys ] || mkdir bin.sys
-cd bin.sys
-
-while [ $# -gt 0 ]
-do
- while read d
- do
- if [ -x $d/$1 ]
- then
- rm -f ./$1
- ln -s $d/$1 .
- break
- fi
- done <<-HERE
- /bin
- /usr/bin
- /usr/sbin
- /usr/libexec
- /usr/local/bin
- /usr/lib/postgresql/10/bin
- /usr/lib/postgresql/9.5/bin
- /usr/lib/postgresql/9.4/bin
- /usr/lib/postgresql/9.3/bin
- /usr/lib/postgresql/9.2/bin
- /usr/lib/postgresql/9.1/bin
- /usr/lib/postgresql/9/bin
-HERE
- shift
-done
-