summaryrefslogtreecommitdiffstats
path: root/ulogd/pgsql/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'ulogd/pgsql/Makefile.in')
-rw-r--r--ulogd/pgsql/Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/ulogd/pgsql/Makefile.in b/ulogd/pgsql/Makefile.in
index 5551cf4..a242e0d 100644
--- a/ulogd/pgsql/Makefile.in
+++ b/ulogd/pgsql/Makefile.in
@@ -14,17 +14,17 @@ all: $(SHARED_LIBS)
distrib:
$(SHARED_LIBS): %.so: %_sh.o
- ld -shared $(PGSQL_LDFLAGS) -o $@ $< -lc
+ $(LD) -shared $(PGSQL_LDFLAGS) -o $@ $< -lc
%_sh.o: %.c
$(CC) $(PGSQL_CFLAGS) $(SH_CFLAGS) -o $@ -c $<
clean:
- rm -f $(SHARED_LIBS) *.o
+ $(RM) $(SHARED_LIBS) *.o
distclean:
- rm -f Makefile
+ $(RM) Makefile
install: all
- @INSTALL@ -m 755 -d $(DESTDIR)$(ULOGD_LIB_PATH)
- @INSTALL@ -m 755 *.so $(DESTDIR)$(ULOGD_LIB_PATH)
+ $(INSTALL) -m 755 -d $(DESTDIR)$(ULOGD_LIB_PATH)
+ $(INSTALL) -m 755 *.so $(DESTDIR)$(ULOGD_LIB_PATH)