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.

44 lines
971 B

  1. # Nmake macros for building Windows 32-Bit apps
  2. TARGETOS=WINNT
  3. !include <win32.mak>
  4. PROJNAME = CertXSam
  5. OBJFILES = atl.Obj ceDebug.Obj ceError.Obj ceLib.Obj CertXSam.Obj Exit.Obj \
  6. CertXSam_i.Obj CertXSam.Res Module.Obj pch.Obj
  7. EXTRA_LIBS = Certidl.Lib Crypt32.Lib
  8. all: $(PROJNAME).Dll
  9. CertXSam.Res: CertXSam.Rc CertXSam.Tlb
  10. $(rc) $(rcvars) -r -fo $*.Res $*.Rc
  11. CertXSam.Rc: CertXSam.Tlb
  12. CertXSam.Tlb: CertXSam.Idl
  13. midl CertXSam.Idl
  14. CertXSam.Obj: CertXSam.Cpp Exit.h CertXSam.h
  15. Exit.Obj: Exit.Cpp Exit.h CertXSam.h
  16. CertXSam.h: CertXSam.Idl
  17. midl /h CertXSam.h CertXSam.Idl
  18. CertXSam_i.c: CertXSam.Idl
  19. .C.Obj:
  20. $(cc) $(cdebug) $(cflags) $(cvarsdll) -I. -DUNICODE $*.C
  21. .Cpp.Obj:
  22. $(cc) $(cdebug) $(cflags) $(cvarsdll) -I. -DUNICODE $*.Cpp
  23. $(PROJNAME).Dll: $(OBJFILES)
  24. $(link) $(linkdebug) $(dlllflags) -def:CertXSam.Def -out:$*.Dll $** $(olelibsdll) $(EXTRA_LIBS)
  25. clean:
  26. del *.Obj *.Res