MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. TARGETOS=WINNT
  2. SEHMAP=TRUE
  3. !include <win32.mak>
  4. !IF "$(TARGETLANG)" == "LANG_JAPANESE"
  5. all: WARN_MSG
  6. !ELSE
  7. all: mpheap.dll tmpheap.exe
  8. !ENDIF
  9. WARN_MSG:
  10.  @echo "Warning:  MPHEAP sample works only on Windows NT 4.0"
  11. # Inference rule for updating the object files
  12. tmpheap.obj: tmpheap.c
  13.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  14. mpheap.obj: mpheap.c
  15.   $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  16. # Build rule for EXE
  17. tmpheap.exe: tmpheap.obj mpheap.lib
  18.     $(link) $(linkdebug) $(conlflags) $(conlibs) $** -out:tmpheap.exe
  19. # linker will build the import library as well
  20. mpheap.dll: mpheap.obj
  21.     $(link) $(linkdebug) $(dlllflags) $(conlibsdll) $** -out:mpheap.dll -def:mpheap.def