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.

28 lines
427 B

  1. MAJORCOMP=sdk
  2. MINORCOMP=rc
  3. TARGETNAME=rc
  4. TARGETPATH=obj
  5. TARGETTYPE=PROGRAM
  6. INCLUDES=.\;..\rcdll
  7. SOURCES=rc.c \
  8. output.cpp \
  9. rc.rc
  10. USECXX_FLAG=/TP
  11. UMTYPE=console
  12. UMENTRY=wmain
  13. SUBSYSTEM_VERSION=5.0
  14. TARGETLIBS=..\rcdll\$(O)\rcdll.lib
  15. # Gotta use libcmt because the Win2k msvcrt.dll doesn't support the counted variants
  16. # CRT routines.
  17. !if $(386)
  18. USE_LIBCMT=1
  19. !else
  20. USE_MSVCRT=1
  21. !endif