1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# rules.mk.sh -- Build dynamically-loadable objects for librep
# $Id$
repdir=$1
repcommonexecdir=$2
repdocfile=$3
cat <<EOF
# rules.mk
repdir=$repdir
repcommonexecdir=$repcommonexecdir
rpath_repcommonexecdir=$repcommonexecdir
rep_LIBTOOL=\$(repcommonexecdir)/libtool --tag CC
rep_INSTALL_ALIASES=\$(repcommonexecdir)/install-aliases
# use this like:
# foo.la : foo.lo bar.lo
# \$(rep_DL_LD) link-opts...
rep_DL_LD=\$(rep_LIBTOOL) --mode=link --tag=CC \$(CC) -avoid-version -module \
-rpath \$(rpath_repcommonexecdir)
rep_DL_INSTALL=\$(rep_LIBTOOL) --mode=install \$(INSTALL)
rep_DL_UNINSTALL=\$(rep_LIBTOOL) --mode=uninstall rm
# Rule for libtool controlled C objects
%.lo : %.c
\$(rep_LIBTOOL) --mode=compile --tag=CC \$(CC) -c \$(CPPFLAGS) \$(CFLAGS) \$<
EOF
|