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

Windows编程

开发平台:

Visual C++

  1. # Some nmake macros for Win32 apps development
  2. TARGETOS=WINNT
  3. SEHMAP=TRUE
  4. !include <ntwin32.mak>
  5. # application specific C defines
  6. cf = -DDBG
  7. all: simplex.exe
  8. # Update the object file if necessary
  9. simplex.obj: simplex.c
  10.     $(cc) $(cflags) $(cvars) $(cdebug) $(cf) simplex.c
  11. dlcdebug.obj: dlcdebug.c dlcdebug.h 
  12.     $(cc) $(cflags) $(cvars) $(cdebug) $(cf) dlcdebug.c
  13. # Update the executable file if necessary
  14. simplex.exe: simplex.obj dlcdebug.obj
  15.     $(link) $(linkdebug) $(conflags) -out:simplex.exe simplex.obj dlcdebug.obj $(conlibs) dlcapi.lib