diff options
Diffstat (limited to 'src/bin/pg_resetwal/Makefile')
-rw-r--r-- | src/bin/pg_resetwal/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/bin/pg_resetwal/Makefile b/src/bin/pg_resetwal/Makefile new file mode 100644 index 0000000000..0f6e5da255 --- /dev/null +++ b/src/bin/pg_resetwal/Makefile @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------- +# +# Makefile for src/bin/pg_resetwal +# +# Copyright (c) 1998-2017, PostgreSQL Global Development Group +# +# src/bin/pg_resetwal/Makefile +# +#------------------------------------------------------------------------- + +PGFILEDESC = "pg_resetwal - reset PostgreSQL WAL log" +PGAPPICON=win32 + +subdir = src/bin/pg_resetwal +top_builddir = ../../.. +include $(top_builddir)/src/Makefile.global + +OBJS= pg_resetwal.o $(WIN32RES) + +all: pg_resetwal + +pg_resetwal: $(OBJS) | submake-libpgport + $(CC) $(CFLAGS) $^ $(LDFLAGS) $(LDFLAGS_EX) $(LIBS) -o $@$(X) + +install: all installdirs + $(INSTALL_PROGRAM) pg_resetwal$(X) '$(DESTDIR)$(bindir)/pg_resetwal$(X)' + +installdirs: + $(MKDIR_P) '$(DESTDIR)$(bindir)' + +uninstall: + rm -f '$(DESTDIR)$(bindir)/pg_resetwal$(X)' + +clean distclean maintainer-clean: + rm -f pg_resetwal$(X) $(OBJS) |