summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2005-06-14 17:50:38 +0000
committerBruce Momjian2005-06-14 17:50:38 +0000
commitcb18a1ed97cb9ae7bfaf4a7b6e003b49d4f1c446 (patch)
treeb9ed8805e22f70d7c5afd2e55d4be30f4da61681
parent4544742fc750078c2aa2dd91ca0e74933ea9e790 (diff)
Attached is a makefile I hacked up to build pg_config under MSVC - the
reason is that it's required (more or less) in order to build the latest DBD::Pg code and I was testing that out under MSVC. Andrew Dunstan
-rw-r--r--src/bin/pg_config/win32.mak99
-rw-r--r--src/win32.mak4
2 files changed, 103 insertions, 0 deletions
diff --git a/src/bin/pg_config/win32.mak b/src/bin/pg_config/win32.mak
new file mode 100644
index 0000000000..c3a8965f5e
--- /dev/null
+++ b/src/bin/pg_config/win32.mak
@@ -0,0 +1,99 @@
+# Makefile for Microsoft Visual C++ 5.0 (or compat)
+
+!IF "$(OS)" == "Windows_NT"
+NULL=
+!ELSE
+NULL=nul
+!ENDIF
+
+CPP=cl.exe
+
+!IFDEF DEBUG
+OPT=/Od /Zi /MDd
+LOPT=/DEBUG
+DEBUGDEF=/D _DEBUG
+OUTDIR=.\Debug
+INTDIR=.\Debug
+!ELSE
+OPT=/O2 /MD
+LOPT=
+DEBUGDEF=/D NDEBUG
+OUTDIR=.\Release
+INTDIR=.\Release
+!ENDIF
+
+ALL : "..\..\port\pg_config_paths.h" "$(OUTDIR)\pg_config.exe"
+
+CLEAN :
+ -@erase "$(INTDIR)\pg_config.obj"
+ -@erase "$(OUTDIR)\pg_config.exe"
+ -@erase "$(INTDIR)\..\..\port\pg_config_paths.h"
+
+"..\..\port\pg_config_paths.h": win32.mak
+ echo #define PGBINDIR "" >$@
+ echo #define PGSHAREDIR "" >>$@
+ echo #define SYSCONFDIR "" >>$@
+ echo #define INCLUDEDIR "" >>$@
+ echo #define PKGINCLUDEDIR "" >>$@
+ echo #define INCLUDEDIRSERVER "" >>$@
+ echo #define LIBDIR "" >>$@
+ echo #define PKGLIBDIR "" >>$@
+ echo #define LOCALEDIR "" >>$@
+
+"$(OUTDIR)" :
+ if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
+
+CPP_PROJ=/nologo $(OPT) /W3 /GX /D "WIN32" $(DEBUGDEF) /D "_CONSOLE" /D\
+ "_MBCS" /Fp"$(INTDIR)\pg_config.pch" /YX /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c \
+ /I ..\..\include /I ..\..\interfaces\libpq /I ..\..\include\port\win32 \
+ /D "HAVE_STRDUP" /D "FRONTEND" /D VAL_CONFIGURE="\"\""
+
+CPP_OBJS=$(INTDIR)/
+CPP_SBRS=.
+
+LINK32=link.exe
+LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
+ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
+ odbccp32.lib wsock32.lib /nologo /subsystem:console /incremental:no\
+ /pdb:"$(OUTDIR)\pg_config.pdb" /machine:I386 $(LOPT) /out:"$(OUTDIR)\pg_config.exe"
+LINK32_OBJS= \
+ "$(INTDIR)\pg_config.obj" \
+ "$(INTDIR)\pgstrcasecmp.obj" \
+ "$(OUTDIR)\path.obj" \
+ "$(INTDIR)\exec.obj" \
+!IFDEF DEBUG
+ "..\..\interfaces\libpq\Debug\libpqddll.lib"
+!ELSE
+ "..\..\interfaces\libpq\Release\libpqdll.lib"
+!ENDIF
+
+"$(OUTDIR)\pg_config.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
+ $(LINK32) @<<
+ $(LINK32_FLAGS) $(LINK32_OBJS)
+<<
+
+"$(OUTDIR)\path.obj" : "$(OUTDIR)" ..\..\port\path.c
+ $(CPP) @<<
+ $(CPP_PROJ) ..\..\port\path.c
+<<
+
+"$(INTDIR)\pgstrcasecmp.obj" : ..\..\port\pgstrcasecmp.c
+ $(CPP) @<<
+ $(CPP_PROJ) ..\..\port\pgstrcasecmp.c
+<<
+
+"$(INTDIR)\exec.obj" : ..\..\port\exec.c
+ $(CPP) @<<
+ $(CPP_PROJ) ..\..\port\exec.c
+<<
+
+.c{$(CPP_OBJS)}.obj::
+ $(CPP) @<<
+ $(CPP_PROJ) $<
+<<
+
+.cpp{$(CPP_OBJS)}.obj::
+ $(CPP) @<<
+ $(CPP_PROJ) $<
+<<
+
diff --git a/src/win32.mak b/src/win32.mak
index c00e8c099e..10ff63f33a 100644
--- a/src/win32.mak
+++ b/src/win32.mak
@@ -18,6 +18,8 @@ ALL:
nmake /f win32.mak $(MAKEMACRO)
cd ..\..\bin\psql
nmake /f win32.mak $(MAKEMACRO)
+ cd ..\..\bin\pg_config
+ nmake /f win32.mak $(MAKEMACRO)
cd ..\..
echo All Win32 parts have been built!
@@ -26,6 +28,8 @@ CLEAN:
nmake /f win32.mak CLEAN
cd ..\..\bin\psql
nmake /f win32.mak CLEAN
+ cd ..\..\bin\pg_config
+ nmake /f win32.mak CLEAN
cd ..\..
echo All Win32 parts have been cleaned!