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

Windows编程

开发平台:

Visual C++

  1. TARGETOS=BOTH
  2. !include <win32.MAK>
  3. proj = dgrecv
  4. mylibs = ..testlibtestlib.lib
  5. all: $(proj).exe
  6. # Update the object files if necessary
  7. $(proj).obj: $(proj).c ..testlibtestlib.lib
  8.     $(cc) $(cflags) $(cvarsmt) $(cdebug) $(proj).c
  9. # Create library if necessary.
  10. ..testlibtestlib.lib :
  11.   cd ..testlib
  12.   $(MAKE) /A
  13.   cd ..dgrecv
  14. # Since the link line has some severe differences depending on what
  15. # platform we are running on, we need to special case this so that
  16. # we execute the correct commands:
  17. $(proj).exe: $(proj).obj
  18.     $(link) $(linkdebug) $(conlflags) $(proj).obj  $(conlibs) $(mylibs) -out:$(proj).exe
  19. # Clean up everything
  20. clean :
  21.     -del *.exe
  22.     -del *.obj