From: Theodore Tso Date: Wed, 27 May 1998 19:37:14 +0000 (+0000) Subject: mkbin.bat: Added convenience batch file which copies all of the X-Git-Tag: krb5-1.1-beta1~698 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4af09b98586163bd9d5ea62a1ffe7621fee0e908;p=krb5.git 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). git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10595 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/windows/ChangeLog b/src/windows/ChangeLog index f6b427bc7..93a0ff48a 100644 --- a/src/windows/ChangeLog +++ b/src/windows/ChangeLog @@ -1,3 +1,12 @@ +1998-05-27 Theodore Ts'o + + * 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 * version.rc: New file containing the version resource information diff --git a/src/windows/Makefile.in b/src/windows/Makefile.in index 58f7820cb..199caf0f8 100644 --- a/src/windows/Makefile.in +++ b/src/windows/Makefile.in @@ -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 index 000000000..889debdd7 --- /dev/null +++ b/src/windows/mkbin.bat @@ -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