Consistently use "superuser" instead of "super user"
[pgsql.git] / src / bin / pgevent / Makefile
blobda69e91839d5a235f730baba5329a9b7b719e20d
1 #-------------------------------------------------------------------------
3 # Makefile for src/bin/pgevent
5 # Copyright (c) 1996-2021, PostgreSQL Global Development Group
7 #-------------------------------------------------------------------------
9 PGFILEDESC = "Eventlog message formatter"
10 PGAPPICON=win32
12 subdir = src/bin/pgevent
13 top_builddir = ../../..
14 include $(top_builddir)/src/Makefile.global
16 ifeq ($(PORTNAME), win32)
18 OBJS = \
19 pgevent.o \
20 pgmsgevent.o
21 NAME=pgevent
23 SHLIB_LINK =
24 SHLIB_EXPORTS = exports.txt
26 all: all-lib
28 install: all install-lib
30 include $(top_srcdir)/src/Makefile.shlib
32 pgmsgevent.o: pgmsgevent.rc win32ver.rc
33 $(WINDRES) $< -o $@ --include-dir=$(top_builddir)/src/include --include-dir=$(top_srcdir)/src/include --include-dir=$(srcdir) --include-dir=.
35 clean distclean: clean-lib
36 rm -f $(OBJS) win32ver.rc
38 endif