File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.2 2000/01/20 22:31:22 momjian Exp $
10
+ # $Header: /cvsroot/pgsql/src/pl/Makefile,v 1.3 2000/01/20 23:00:39 momjian Exp $
11
11
#
12
12
# -------------------------------------------------------------------------
13
13
@@ -21,7 +21,7 @@ ifeq ($(USE_TCL), true)
21
21
$(MAKE) -C tcl $@
22
22
endif
23
23
ifeq ($(USE_PERL ) , true)
24
- if [ "$@" = "install" ]; then \
24
+ -@ if [ "$@" = "install" ]; then \
25
25
$(MAKE) $(MFLAGS) install-plperl; \
26
26
else \
27
27
$(MAKE) $(MFLAGS) plperl/Makefile; \
Original file line number Diff line number Diff line change @@ -93,18 +93,20 @@ endif
93
93
#
94
94
# Build the shared lib
95
95
#
96
- plperl : plperl.lo
97
- libtool \$ (CC) -o plperl.so plperl.lo \$ (SHLIB_EXTRA_LIBS) \$ (LDADD) \$ (LDFLAGS)
96
+ all: plperl
98
97
99
- %.lo : %.c
100
- libtool \$ (CC) -c \$ (CFLAGS) \$ <
98
+ plperl : plperl.o
99
+ \$ (CC) -o plperl.so plperl.o \$ (SHLIB_EXTRA_LIBS) \$ (LDADD) \$ (LDFLAGS)
100
+
101
+ %.o : %.c
102
+ \$ (CC) -c \$ (CFLAGS) \$ <
101
103
102
104
103
105
#
104
106
# Clean
105
107
#
106
108
clean:
107
- rm -f \$ (INFILES) *.o *.lo
109
+ rm -f \$ (INFILES) *.o
108
110
rm -rf .libs
109
111
rm -f Makefile
110
112
You can’t perform that action at this time.
0 commit comments