mkautaux.bat
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:2k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. @ECHO OFF
  2. REM Program: Authenticator Linkage Generator auxillary for NT/Win9x
  3. REM Author: Mark Crispin
  4. REM Networks and Distributed Computing
  5. REM Computing & Communications
  6. REM University of Washington
  7. REM Administration Building, AG-44
  8. REM Seattle, WA  98195
  9. REM Internet: MRC@CAC.Washington.EDU
  10. REM Date: 6 December 1995
  11. REM Last Edited:14 January 1999
  12. REM Copyright 1999 by the University of Washington
  13. REM  Permission to use, copy, modify, and distribute this software and its
  14. REM documentation for any purpose and without fee is hereby granted, provided
  15. REM that the above copyright notice appears in all copies and that both the
  16. REM above copyright notice and this permission notice appear in supporting
  17. REM documentation, and that the name of the University of Washington not be
  18. REM used in advertising or publicity pertaining to distribution of the software
  19. REM without specific, written prior permission.  This software is made
  20. REM available "as is", and
  21. REM THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  22. REM WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  23. REM WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  24. REM NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  25. REM INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  26. REM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  27. REM (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  28. REM WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  29. ECHO extern AUTHENTICATOR auth_%1; >> LINKAGE.H
  30. REM Note the introduction of the caret to quote the ampersand in NT
  31. if "%OS%" == "Windows_NT" ECHO   auth_link (^&auth_%1); /* link in the %1 authenticator */ >> LINKAGE.C
  32. if "%OS%" == "" ECHO   auth_link (&auth_%1); /* link in the %1 authenticator */ >> LINKAGE.C
  33. ECHO #include "auth_%1.c" >> AUTHS.C