1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

plperl Makefile cleanup. Doesn't work on BSDI yet.

This commit is contained in:
Bruce Momjian
2000-01-20 23:00:40 +00:00
parent 22e7c06506
commit 481a7439fb
2 changed files with 9 additions and 7 deletions

View File

@@ -93,18 +93,20 @@ endif
#
# Build the shared lib
#
plperl : plperl.lo
libtool \$(CC) -o plperl.so plperl.lo \$(SHLIB_EXTRA_LIBS) \$(LDADD) \$(LDFLAGS)
all: plperl
%.lo : %.c
libtool \$(CC) -c \$(CFLAGS) \$<
plperl : plperl.o
\$(CC) -o plperl.so plperl.o \$(SHLIB_EXTRA_LIBS) \$(LDADD) \$(LDFLAGS)
%.o : %.c
\$(CC) -c \$(CFLAGS) \$<
#
# Clean
#
clean:
rm -f \$(INFILES) *.o *.lo
rm -f \$(INFILES) *.o
rm -rf .libs
rm -f Makefile