ef03f49070
testing whether munging dependency_libs in installed libtool archives works properly.
17 lines
414 B
Makefile
17 lines
414 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/08/30 04:44:14 jlam Exp $
|
|
|
|
.PHONY: all
|
|
all: libregress1.la libregress2.la
|
|
|
|
.SUFFIXES: .lo
|
|
|
|
.c.lo:
|
|
${LIBTOOL} --mode=compile ${CC} -c $<
|
|
|
|
libregress1.la: f.lo
|
|
${LIBTOOL} --mode=link ${CC} -o $@ $> \
|
|
-rpath ${PREFIX}/lib -version-info 0:0
|
|
|
|
libregress2.la: libregress1.la f.lo
|
|
${LIBTOOL} --mode=link ${CC} -o $@ $> libregress1.la \
|
|
-rpath ${PREFIX}/lib -version-info 0:0
|