1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Update for ELF.

This commit is contained in:
Jacques Vidrine 1998-11-13 23:16:25 +00:00
parent b06d83f146
commit 76fd954367
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=14506

View File

@ -0,0 +1,26 @@
.SUFFIXES: .py .pyc
all: pgmodule.so pgext.pyc pgtools.pyc
install:
@${MKDIR} ${PREFIX}/lib/site-python
${BSD_INSTALL_PROGRAM} pgmodule.so ${PREFIX}/lib/site-python
${BSD_INSTALL_DATA} pgext.py pgext.pyc pgtools.py pgtools.pyc \
${PREFIX}/lib/site-python
clean:
rm -f *.so *.o *.pyc pgtools.py
pgtools.py: tutorial/pgtools.py
${LN} -fs ${.ALLSRC} ${.TARGET}
pgmodule.so: pgmodule.o
${LD} -Bshareable -lc_r -L${PREFIX}/lib/python1.5/config -lpython1.5 \
-L${PREFIX}/pgsql/lib -lpq ${.ALLSRC} -o ${.TARGET}
pgmodule.o: pgmodule.c
${CC} -c -I${PREFIX}/include/python1.5 -I${PREFIX}/pgsql/include \
${.ALLSRC}
.py.pyc:
${SETENV} PYTHONPATH=${.CURDIR} ${PYTHON} -c 'import ${.IMPSRC:.py=}'