blob: ec4538a1a34cb6a95c81cd7f227ef8cbb4bdf1ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $NetBSD: Makefile,v 1.1.1.1 2006/03/21 19:23:08 drochner Exp $
all: libpthstub.la
libpthstub.la: pthread-stubs.lo
${LIBTOOL} --mode=link ${CC} -o $@ $? -rpath ${PREFIX}/lib
pthread-stubs.lo: pthread-stubs.c
${LIBTOOL} --mode=compile ${CC} -c -o $@ $?
install:
${LIBTOOL} --mode=install ${BSD_INSTALL_LIB} libpthstub.la \
${PREFIX}/lib
|