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

Windows编程

开发平台:

Visual C++

  1. # Nmake macros for building Windows 32-Bit apps
  2. !include <win32.mak>
  3. !if "$(CPU)" == "i386" # .syms are useful for Win95
  4. SYM = lowpass.sym
  5. !endif
  6. all: lowpass.exe $(SYM)
  7. OBJS= lowpass.obj
  8. OTHERCLOPTS=-DWIN32_LEAN_AND_MEAN -nologo -I. -I..include
  9. OTHERRCOPTS=-DWIN32_LEAN_AND_MEAN -I. -I..include
  10. # Update the resource if necessary
  11. lowpass.res: lowpass.rc lowpass.h strings.rc strings.h lowpass.rcv lowpass.ico
  12.     $(rc) -r -DWIN32 $(OTHERRCOPTS) lowpass.rc
  13. # Update the object file if necessary
  14. lowpass.obj: lowpass.c lowpass.h strings.h
  15.     $(cc) $(cdebug)  $(cflags) $(cvars) $(OTHERCLOPTS) lowpass.c
  16. # Update the executable file if necessary, and if so, add the resource back in.
  17. lowpass.exe lowpass.map:  $(OBJS) lowpass.res
  18.     $(link) $(linkdebug) $(guiflags) -out:lowpass.exe $(OBJS) lowpass.res $(guilibs) 
  19.     winmm.lib -map:$*.map
  20.     
  21. lowpass.sym: $*.map
  22. mapsym $*.map
  23. clean:
  24.     @if exist lowpass.exe del lowpass.exe
  25.     @if exist *.obj del *.obj
  26.     @if exist *.map del *.map
  27.     @if exist *.sym del *.sym
  28.     @if exist *.res del *.res
  29.     @if exist *.pdb del *.pdb
  30.     @if exist *.exp del *.exp
  31.     @if exist *.lib del *.lib