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

Windows编程

开发平台:

Visual C++

  1. TARGETOS=WINNT
  2. SEHMAP=TRUE
  3. # RFLAGS is for Windows resources
  4. RFLAGS= -fo$@ -DWIN32 -r -D_WIN32 -DWINVER=0x0400
  5. !include <win32.mak>
  6. all: remote.exe remoteds.exe
  7. # Update the resources if necessary
  8. remote.exe: remote.obj  
  9.         remote.res 
  10.         client.obj  
  11.         pipeex.obj 
  12.         srvad.obj 
  13.         srvchild.obj 
  14.         srvctos.obj 
  15.         srvhshak.obj 
  16.         srvlist.obj 
  17.         srvmain.obj 
  18.         srvquery.obj 
  19.         srvstoc.obj 
  20.         srvutil.obj
  21.   $(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibsmt) advapi32.lib user32.lib
  22. remoteds.exe: remoteds.obj 
  23.         remoteds.res
  24.   $(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibsmt) advapi32.lib
  25. .c.obj:
  26.   $(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
  27. .rc.res:
  28.     $(RC) $(RFLAGS) $(@B).rc