diff options
| author | Tom Lane | 2006-07-15 03:33:14 +0000 |
|---|---|---|
| committer | Tom Lane | 2006-07-15 03:33:14 +0000 |
| commit | a7143b3088aef0f82aa299aecdad8462ff74d23a (patch) | |
| tree | 9b7a36b6b83890b9d7b9026994bfe5faa6182533 /src/bin/pgevent | |
| parent | 2d11d26113dd88072e09f92ad3f2032a27e4d8ce (diff) | |
Fix some makefiles that fail to yield good results from 'make -qp'.
This doesn't really matter for ordinary building of Postgres, but it's
useful for automated checks, such as my just-committed pgcheckdefines.
Diffstat (limited to 'src/bin/pgevent')
| -rw-r--r-- | src/bin/pgevent/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/pgevent/Makefile b/src/bin/pgevent/Makefile index 23a4d9ce3e9..42460a98822 100644 --- a/src/bin/pgevent/Makefile +++ b/src/bin/pgevent/Makefile @@ -12,6 +12,8 @@ subdir = src/bin/pgevent top_builddir = ../../.. include $(top_builddir)/src/Makefile.global +ifeq ($(PORTNAME), win32) + OBJS=pgevent.o pgmsgevent.o NAME=pgevent.dll @@ -21,7 +23,7 @@ install: all install-lib pgevent.dll: $(OBJS) pgevent.def dllwrap --def pgevent.def -o $(NAME) $(OBJS) - + pgmsgevent.o: pgmsgevent.rc win32ver.rc windres pgmsgevent.rc -o pgmsgevent.o --include-dir=$(top_builddir)/src/include @@ -38,3 +40,5 @@ clean distclean: clean-lib: rm -f $(NAME) + +endif |
