mkbin.bat: Added convenience batch file which copies all of the
authorTheodore Tso <tytso@mit.edu>
Wed, 27 May 1998 19:37:14 +0000 (19:37 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 27 May 1998 19:37:14 +0000 (19:37 +0000)
appropriate files out of the build tree into a single kbin directory

Makefile.in: Add the windows/lib directory to the list of directories
to be built (and cleaned).

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10595 dc483132-0cff-0310-8789-dd5450dbe970

src/windows/ChangeLog
src/windows/Makefile.in
src/windows/mkbin.bat [new file with mode: 0644]

index f6b427bc759891f95e049f718e09c122346b7ac8..93a0ff48ac8b250d8610984229b17eb132b58b38 100644 (file)
@@ -1,3 +1,12 @@
+1998-05-27  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * mkbin.bat: Added convenience batch file which copies all of the
+               appropriate files out of the build tree into a single kbin
+               directory
+
+       * Makefile.in: Add the windows/lib directory to the list of
+               directories to be built (and cleaned).
+
 Tue Aug  5 18:40:55 1997  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * version.rc: New file containing the version resource information
index 58f7820cbf8f336814c923e9c32336ad2b9ee863..199caf0f857ffeb554863913ce1cff2f423e4738 100644 (file)
@@ -4,8 +4,11 @@
 # Makefile that recurses into cns subdirectory.
 #
 all-windows::
+       @echo Making in windows\lib
+       cd lib
+       -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD)
        @echo Making in windows\cns
-       cd cns
+       cd ..\cns
        -$(MAKE) -$(MAKEFLAGS) LIBCMD=$(LIBCMD)
        @echo Making in windows\wintel
        cd ..\wintel
@@ -19,8 +22,11 @@ all-windows::
        cd ..
 
 clean-windows::
+       @echo Making clean in windows\lib
+       cd lib
+       -$(MAKE) -$(MAKEFLAGS) clean
        @echo Making clean in windows\cns
-       cd cns
+       cd ..\cns
        -$(MAKE) -$(MAKEFLAGS) clean
        @echo Making clean in windows\wintel
        cd ..\wintel
diff --git a/src/windows/mkbin.bat b/src/windows/mkbin.bat
new file mode 100644 (file)
index 0000000..889debd
--- /dev/null
@@ -0,0 +1,8 @@
+mkdir kbin
+copy lib\*.dll kbin
+copy windows\cns\krb5.exe kbin
+copy windows\wintel\telnet.exe kbin
+copy windows\gss\gss.exe kbin
+copy clients\klist\klist.exe kbin
+copy clients\kinit\kinit.exe kbin 
+copy clients\kdestroy\kdestroy.exe kbin