Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
421 B

  1. @echo off
  2. perl createpa.pl main.ll type.ll value.ll constrai.ll directiv.ll object.ll future.ll
  3. ..\asn1all\obj\i386\asn1all.exe -i 4 -l parser.ll
  4. rename parser.c p.c
  5. rename parser.h p.h
  6. echo #ifndef _ASN1_PARSER_ > k
  7. echo #define _ASN1_PARSER_ >> k
  8. cat k p.h > k2
  9. echo #endif // _ASN1_PARSER_ > k
  10. cat k2 k > parser.h
  11. echo #include "precomp.h" > k
  12. cat k p.c > k2
  13. rename k2 parser.c
  14. del p.c
  15. del p.h
  16. del k