mirror of
https://github.com/postgres/postgres.git
synced 2026-04-28 17:49:35 -04:00
36 lines
1 KiB
Makefile
36 lines
1 KiB
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/bin/pg_resetxlog
|
|
#
|
|
# Copyright (c) 1998-2008, PostgreSQL Global Development Group
|
|
#
|
|
# $PostgreSQL: pgsql/src/bin/pg_resetxlog/Makefile,v 1.19 2008/01/01 19:45:55 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
PGFILEDESC = "pg_resetxlog - reset PostgreSQL WAL log"
|
|
subdir = src/bin/pg_resetxlog
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
OBJS= pg_resetxlog.o pg_crc.o $(WIN32RES)
|
|
|
|
all: submake-libpgport pg_resetxlog
|
|
|
|
pg_resetxlog: $(OBJS)
|
|
$(CC) $(CFLAGS) $^ $(LDFLAGS) $(LIBS) -o $@$(X)
|
|
|
|
pg_crc.c: $(top_srcdir)/src/backend/utils/hash/pg_crc.c
|
|
rm -f $@ && $(LN_S) $< .
|
|
|
|
install: all installdirs
|
|
$(INSTALL_PROGRAM) pg_resetxlog$(X) '$(DESTDIR)$(bindir)/pg_resetxlog$(X)'
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) '$(DESTDIR)$(bindir)'
|
|
|
|
uninstall:
|
|
rm -f '$(DESTDIR)$(bindir)/pg_resetxlog$(X)'
|
|
|
|
clean distclean maintainer-clean:
|
|
rm -f pg_resetxlog$(X) $(OBJS) pg_crc.c
|