Build win32 binaries in obj/$(CPU)/{dbg,rel}
authorDanilo Almeida <dalmeida@mit.edu>
Mon, 10 May 1999 19:36:35 +0000 (19:36 +0000)
committerDanilo Almeida <dalmeida@mit.edu>
Mon, 10 May 1999 19:36:35 +0000 (19:36 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11431 dc483132-0cff-0310-8789-dd5450dbe970

src/config/ChangeLog
src/config/win-post.in
src/config/windows.in

index 84a6951ea1b34051bee6aa6aafc37f4531c88459..5e3a5d9862046ee59ecc1b47427255ad61f6c12c 100644 (file)
@@ -1,3 +1,8 @@
+Mon May 10 15:03:28 1999  Danilo Almeida  <dalmeida@mit.edu>
+
+       * windows.in, win-post.in: Build win32 binaries in 
+               obj/$(CPU)/{dbg,rel}.
+
 1999-03-31  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * post.in (Makefile): Don't try to run autoconf with $(SHELL),
index dbbc08301fcbcdee7c96ba26bcdd98273f2456a9..856a9e7a18b8ad93ba3dc38fc898b46c7ca28968 100644 (file)
@@ -1,4 +1,4 @@
-# config/post.in
+# config/win-post.in
 # put all:: first just in case no other rules occur here
 #
 all::
@@ -24,36 +24,44 @@ Makefile: Makefile.in $(BUILDTOP)\config\windows.in $(BUILDTOP)\config\win-post.
 .c.obj:
        $(CC) $(CFLAGS) /c $*.c
 !if defined(LIBNAME)
-##WIN16##      $(LIBCMD) $(PAGESIZE) /nologo $(LIBNAME) -+$@;
-
-##WIN32##!if !defined(OBJFILELIST)
-##WIN32##OBJFILELIST=@$(OBJFILE)
-##WIN32##!endif
-##WIN32##!if !defined(OBJFILEDEP)
-##WIN32##OBJFILEDEP=$(OBJFILE)
-##WIN32##!endif
-
-##WIN32##all-windows:: $(LIBNAME)
-##WIN32##$(LIBNAME): $(OBJFILEDEP)
-##WIN32##      $(LIBCMD) /out:$(LIBNAME) /nologo $(OBJFILELIST)
+!ifndef WIN32 # WIN16
+       $(LIBCMD) $(PAGESIZE) /nologo $(LIBNAME) -+$@;
+
+!else # WIN32
+
+!if !defined(OBJFILELIST)
+OBJFILELIST=@$(OBJFILE)
+!endif
+!if !defined(OBJFILEDEP)
+OBJFILEDEP=$(OBJFILE)
 !endif
 
+all-windows:: $(LIBNAME)
+$(LIBNAME): $(OBJFILEDEP)
+       $(LIBCMD) /out:$(LIBNAME) /nologo $(OBJFILELIST)
+
+!endif # WIN32
+!endif # LIBNAME
+
 
 !if defined(OBJFILE)
 all-windows:: $(OBJFILE)
 clean-windows::
        $(RM) $(OBJFILE)
 !if defined(LIBOBJS)
-##DOS$(OBJFILE): $(LIBOBJS)
-##DOS  $(RM) $(OBJFILE)
-##WIN16##      $(CP) nul: $(OBJFILE)
+$(OBJFILE): $(LIBOBJS)
+       $(RM) $(OBJFILE)
+!ifndef WIN32 # WIN16
+       $(CP) nul: $(OBJFILE)
+!else # WIN32
 !if defined(PREFIXDIR)
-##WIN32##      $(LIBECHO) -p $(PREFIXDIR)\ $** > $(OBJFILE)
+       $(LIBECHO) -p $(PREFIXDIR)\ $** > $(OBJFILE)
 !else
-##WIN32##      $(LIBECHO) $** > $(OBJFILE)
-!endif
-!endif
-!endif
+       $(LIBECHO) $** > $(OBJFILE)
+!endif # !PREFIXDIR
+!endif # WIN32
+!endif # LIBOBJS
+!endif # OBJFILE
 
 
 check::
@@ -86,8 +94,8 @@ clean-unix::
        $(RM) .depend
 
 clean-windows::
-       $(RM) *.$(OBJEXT)
-       $(RM) msvc.pdb *.err *.exe *.bak
+       $(RM) $(OUTPRE)*.$(OBJEXT)
+       $(RM) $(OUTPRE)msvc.pdb *.err $(OUTPRE)*.exe *.bak
 
 !if defined(LIBNAME)
 clean-windows::
index c2369ae5242199a96d7c0e547b23150aa499628f..1c47bf346fa23553a9827ed6bf1ecf227f9a6ff5 100644 (file)
@@ -1,6 +1,44 @@
-
+##WIN32##WIN32=1
 WHAT=windows
 
+!ifdef WIN32
+
+!ifndef NO_OUTPRE
+all:: output-prefix-dir
+!endif
+
+# Figure out the CPU
+!if !defined(CPU) || "$(CPU)" == ""
+CPU=$(PROCESSOR_ARCHITECTURE)
+!endif # CPU
+
+!if "$(CPU)" == ""
+CPU=i386
+!endif
+
+# Change x86 or X86 to i386
+!if ( "$(CPU)" == "X86" ) || ( "$(CPU)" == "x86" )
+CPU=i386
+!endif # CPU == X86
+
+!if ( "$(CPU)" != "i386" ) && ( "$(CPU)" != "ALPHA" )
+!error Must specify CPU environment variable ( CPU=i386, CPU=ALPHA)
+!endif
+
+# The OUTPRE lines below cannot end in a backslash. To remedy that, 
+# we add a space after the backslash.  That works wonderfully, 
+# but be we have to watch out for Emacs makefile-mode, which
+# will silently strip out such spaces!
+!ifdef NODEBUG
+OUTPRE=obj\$(CPU)\rel^\
+!else
+OUTPRE=obj\$(CPU)\dbg^\
+!endif
+
+PDB_OPTS=-Fd$(OUTPRE)\ -FD
+
+!endif # WIN32
+
 all:: all-$(WHAT)
 clean:: clean-$(WHAT)
 install:: install-$(WHAT)
@@ -16,15 +54,15 @@ all-windows:: Makefile
 # Directory syntax:
 #
 # begin absolute path
-ABS=\\
+ABS=^\
 # begin relative path
 REL=
 # up-directory
 U=..
 # path separator
-S=\\
+S=^\
 # this is magic... should only be used for preceding a program invocation
-C=.\\
+C=.^\
 
 srcdir = .
 SRCTOP = $(srcdir)\$(BUILDTOP)
@@ -35,17 +73,41 @@ CL=
 #
 # CCOPTS for DLL functions
 #
-##WIN16##CCOPTS=/ALw /Zp /GD2s /Os /Zi /Od /W3 /Ld $(XTRA) $(DLL_FILE_DEF)
-##WIN32##CCOPTS=/Os /Zi /Od /W3 /MD $(XTRA) $(DLL_FILE_DEF)
+!ifndef WIN32 # WIN16
+CCOPTS=/ALw /Zp /GD2s /Os /Zi /Od /W3 /Ld $(XTRA) $(DLL_FILE_DEF)
+!else # WIN32
+!ifdef NODEBUG
+CCOPTS=/Os /W3 /MD $(PDB_OPTS) $(XTRA) $(DLL_FILE_DEF)
+!else
+CCOPTS=/Os /Zi /Od /W3 /MD $(PDB_OPTS) $(XTRA) $(DLL_FILE_DEF)
+!endif
+!endif # WIN32
+
 #
 # CCOPTS for non-DLL compiles
 #
-##WIN16##CCOPTS2=/AL /Zp /GA /G2s  /Os /Zi /Od /W3 $(XTRA)
-##WIN32##CCOPTS2=/Os /Zi /Od /W3 $(XTRA)
+!ifndef WIN32 # WIN16
+CCOPTS2=/AL /Zp /GA /G2s  /Os /Zi /Od /W3 $(XTRA)
+!else # WIN32
+!ifdef NODEBUG
+CCOPTS2=/Os /W3 $(PDB_OPTS) $(XTRA)
+!else
+CCOPTS2=/Os /Zi /Od /W3 $(PDB_OPTS) $(XTRA)
+!endif
+!endif # WIN32
 CPPFLAGS =  -I$(SRCTOP)\include -I$(SRCTOP)\include\krb5 
 DEFS = $(CPPFLAGS)
 CFLAGS2 = $(CCOPTS2) $(DEFS)
 
+#
+# LOPTS
+#
+!ifdef NODEBUG
+LOPTS=
+!else
+LOPTS=/debug
+!endif
+
 # /Zi gives debug info in each object file.
 # /Zp packs structures: Required for Windows API (but is not default!!!)
 # /Za strict ansi compliance
@@ -65,7 +127,7 @@ DBG_LIB=/nologo /Zp /ALw /GD /Gs /Os /G2 /Zi /Od
 DBG=/nologo /Zp /AL /Os /Mq /Zi /Od
 
 RM=$(BUILDTOP)\config\rm.bat
-LIBECHO=$(BUILDTOP)\util\windows\libecho
+LIBECHO=$(BUILDTOP)\util\windows\$(OUTPRE)libecho
 CP=copy
 MV=ren
 LN=copy
@@ -75,18 +137,25 @@ AWK=rem
 RC = rc
 CVTRES = cvtres
 
-##WIN16##CLIB=$(BUILDTOP)\lib\comerr16.lib
-##WIN32##CLIB=$(BUILDTOP)\lib\comerr32.lib
-##WIN16##PLIB=$(BUILDTOP)\lib\xpprof16.lib
-##WIN32##PLIB=$(BUILDTOP)\lib\xpprof32.lib
-##WIN16##KLIB=$(BUILDTOP)\lib\krb5_16.lib
-##WIN32##KLIB=$(BUILDTOP)\lib\krb5_32.lib
-##WIN16##GLIB=$(BUILDTOP)\lib\gssapi.lib
-##WIN32##GLIB=$(BUILDTOP)\lib\gssapi32.lib
-##WIN16##K4LIB=$(BUILDTOP)\lib\krb4_16.lib
-##WIN32##K4LIB=$(BUILDTOP)\lib\krb4_32.lib
-##WIN16##WLIB=$(BUILDTOP)\lib\winsock.lib
-##WIN32##WLIB=
+!ifndef WIN32 # WIN16
+WINBITS=16
+!else # WIN32
+WINBITS=32
+!endif # WIN32
+
+CLIB=$(BUILDTOP)\lib\$(OUTPRE)comerr$(WINBITS).lib
+PLIB=$(BUILDTOP)\lib\$(OUTPRE)xpprof$(WINBITS).lib
+KLIB=$(BUILDTOP)\lib\$(OUTPRE)krb5_$(WINBITS).lib
+K4LIB=$(BUILDTOP)\lib\krb4_16.lib
+K4LIB=$(BUILDTOP)\lib\$(OUTPRE)krb4_$(WINBITS).lib
+
+!ifndef WIN32 # WIN16
+GLIB=$(BUILDTOP)\lib\gssapi.lib
+WLIB=$(BUILDTOP)\lib\winsock.lib
+!else # WIN32
+GLIB=$(BUILDTOP)\lib\$(OUTPRE)gssapi32.lib
+WLIB=
+!endif # WIN32
 
 ARADD=rem
 RANLIB=rem
@@ -98,6 +167,34 @@ EXEEXT=.exe
 
 MFLAGS=$(MAKEFLAGS)
 
+
+!ifdef WIN32
+output-prefix-dir:: $(OUTPRE)
+
+$(OUTPRE):
+       -if not exist $(OUTPRE) mkdir $(OUTPRE)
+
+{}.rc{$(OUTPRE)}.res:
+       $(RC) $(RCFLAGS) -fo $@ -r $<
+
+{}.c{$(OUTPRE)}.obj:
+       $(CC) $(CFLAGS) -Fo$(OUTPRE)\ -c $<
+
+{}.cxx{$(OUTPRE)}.obj:
+       $(CXX) $(CXXFLAGS) -Fo$(OUTPRE)\ -c $<
+
+{}.cpp{$(OUTPRE)}.obj:
+       $(CPP) $(CPPFLAGS) -Fo$(OUTPRE)\ -c $<
+
+#{}.c{$(OUTPRE)}.sbr:
+#      $(C_RULE)
+#{}.cxx{$(OUTPRE)}.sbr:
+#      $(CXX_RULE)
+#{}.cpp{$(OUTPRE)}.sbr:
+#      $(CXX_RULE)
+!endif # WIN32
+
+
 #
 # End of Microsoft Windows config lines
 #