/usr/lib/rep/x86_64-pc-linux-gnu/rules.mk is in librep-dev 0.90.2-1.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # rules.mk
repdir=/usr/share/rep
repcommonexecdir=/usr/lib/rep/x86_64-pc-linux-gnu
rpath_repcommonexecdir=/usr/lib/rep/x86_64-pc-linux-gnu
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) $<
|