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.

37 lines
632 B

  1. !if 0
  2. Copyright (c) 1997 - 1999 Microsoft Corporation. All Rights Reserved.
  3. !endif
  4. !ifdef NTMAKEENV
  5. !include $(NTMAKEENV)\makefile.def
  6. !else
  7. DISABLE_PCH = 1
  8. !ifndef AXSDK
  9. AXSDK=..\..\SDK
  10. !endif
  11. !if "$(CPU)" == ""
  12. CPU = i386
  13. !endif
  14. LINK_LIBS = ddraw.lib $(CPU)\fastfile.lib dsound.lib $(AXSDK)\lib\amstrmid.lib
  15. TARGET_NAME = foxbear
  16. TARGET_TYPE = PROGRAM
  17. EXE_TYPE=windows
  18. TARGET_GOAL = RUNTIME
  19. RC_FILE = foxbear.rc
  20. SRC_FILES = foxbear.c gameproc.c tile.c plane.c sprite.c gfx.c \
  21. bmp.c ddraw.c fbsound.c dsutil.c vidsrc.c
  22. DEF_FILE = foxbear.def
  23. !include "$(AXSDK)\tools\activex.mak"
  24. !endif