Source code of Windows XP (NT5)
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.

34 lines
537 B

  1. #
  2. # If BUILDMSG is not defined, the define it as the empty string to make
  3. # the conditionals easier to write.
  4. #
  5. !IFNDEF BUILDMSG
  6. BUILDMSG=
  7. !ENDIF
  8. !IFNDEF NO_STRICT
  9. STRICT=1
  10. !ENDIF
  11. SDKINC = $(_NTROOT)\public\sdk\inc
  12. OAKINC = $(_NTROOT)\public\oak\inc
  13. TARGETSRCS= msg00001.bin \
  14. t1msg.h \
  15. t1msg.rc
  16. all: $(TARGETSRCS)
  17. !IF "$(BUILDMSG)" != ""
  18. @ech ; $(BUILDMSG) ;
  19. !ENDIF
  20. clean: cleansrc all
  21. cleansrc:
  22. -erase $(TARGETSRCS)
  23. msg00001.bin t1msg.rc t1msg.h: t1msg.mc
  24. mc -v t1msg.mc
  25.