Unmark gen_random_uuid() function leakproof.
[pgsql.git] / src / bin / pgevent / Makefile
blobc2207a0f4b59904b85d850c619062a8a78d22d44
1 #-------------------------------------------------------------------------
3 # Makefile for src/bin/pgevent
5 # Copyright (c) 1996-2024, 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 $(WIN32RES)
22 NAME=pgevent
24 SHLIB_LINK =
25 SHLIB_EXPORTS = exports.txt
27 all: all-lib
29 install: all install-lib
31 include $(top_srcdir)/src/Makefile.shlib
33 pgmsgevent.o: pgmsgevent.rc
34 $(WINDRES) $< -o $@ --include-dir=$(top_builddir)/src/include --include-dir=$(top_srcdir)/src/include --include-dir=$(srcdir) --include-dir=.
36 clean distclean: clean-lib
37 rm -f $(OBJS) win32ver.rc
39 endif