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.

42 lines
719 B

  1. !ifdef NTMAKEENV
  2. !INCLUDE $(NTMAKEENV)\makefile.def
  3. !ELSE
  4. # Quartz Project Makefile
  5. #
  6. # Copyright (c) 1995 - 1997 Microsoft Corporation. All Rights Reserved.
  7. #
  8. # Targets are provided by QUARTZ.MAK
  9. DISABLE_PCH = 1
  10. TARGET_NAME = MPEGAPI
  11. TARGET_EXT =
  12. TARGET_GOAL = RUNTIME
  13. !ifndef QUARTZ_DLL
  14. TARGET_TYPE = DYNLINK
  15. C_DEFINES=$(C_DEFINES) -DFILTER_DLL
  16. !else
  17. TARGET_TYPE = LIBRARY
  18. C_DEFINES=$(C_DEFINES) -DFILTER_LIB
  19. !endif
  20. INC_PATH = ..\inc; \
  21. ..\..\h
  22. SRC_FILES = \
  23. mpegapi.c \
  24. imp.c \
  25. init.c \
  26. trace.c
  27. RC_FILE = mpegapi.rc
  28. DEF_FILE = mpegapi.def
  29. DLL_BASE = 0x1c400000
  30. DLL_ENTRY = DllMain
  31. !include "$(QUARTZ)\Quartz.mak"
  32. !ENDIF