mirror of
https://github.com/postgres/postgres.git
synced 2026-04-26 00:31:07 -04:00
Replace for loops in makefiles with proper dependencies. Parallel make can now span across directories. Also, make -k and make -q work properly. GNU make 3.80 or newer is now required.
33 lines
806 B
Makefile
33 lines
806 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile--
|
|
# Makefile for src/backend/replication/libpqwalreceiver
|
|
#
|
|
# IDENTIFICATION
|
|
# src/backend/replication/libpqwalreceiver/Makefile
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend/replication/libpqwalreceiver
|
|
top_builddir = ../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
override CPPFLAGS := -I$(srcdir) -I$(libpq_srcdir) $(CPPFLAGS)
|
|
|
|
OBJS = libpqwalreceiver.o
|
|
SHLIB_LINK = $(libpq)
|
|
SHLIB_PREREQS = submake-libpq
|
|
NAME = libpqwalreceiver
|
|
|
|
all: all-shared-lib
|
|
|
|
include $(top_srcdir)/src/Makefile.shlib
|
|
|
|
install: all installdirs install-lib
|
|
|
|
installdirs: installdirs-lib
|
|
|
|
uninstall: uninstall-lib
|
|
|
|
clean distclean maintainer-clean: clean-lib
|
|
rm -f $(OBJS)
|