1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Finish adding file version information to installed Windows binaries.

In support of this, have the MSVC build follow GNU make in preferring
GNUmakefile over Makefile when a directory contains both.

Michael Paquier, reviewed by MauMau.
This commit is contained in:
Noah Misch
2014-08-18 22:59:53 -04:00
parent fb2aece8ae
commit ee9569e4df
8 changed files with 66 additions and 22 deletions

View File

@ -6,6 +6,9 @@
#
#-------------------------------------------------------------------------
PGFILEDESC = "snowball - natural language stemmers"
PGAPPICON = win32
subdir = src/backend/snowball
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
@ -13,7 +16,7 @@ include $(top_builddir)/src/Makefile.global
override CPPFLAGS := -I$(top_srcdir)/src/include/snowball \
-I$(top_srcdir)/src/include/snowball/libstemmer $(CPPFLAGS)
OBJS= dict_snowball.o api.o utilities.o \
OBJS= $(WIN32RES) dict_snowball.o api.o utilities.o \
stem_ISO_8859_1_danish.o \
stem_ISO_8859_1_dutch.o \
stem_ISO_8859_1_english.o \