home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / dcom / dcomperm / makefile < prev    next >
Makefile  |  1997-04-07  |  400b  |  21 lines

  1. !include <win32.mak>
  2.  
  3. all: dcomperm.exe
  4.  
  5. cflags = $(cflags) -DUNICODE=1 -D_UNICODE=1 -I..\include
  6.  
  7. OBJS = dcomperm.obj sdmgmt.obj wrappers.obj utils.obj aclmgmt.obj srvcmgmt.obj listacl.obj
  8.  
  9.  
  10. .cpp.obj:
  11.   $(cc) $(cdebug) $(cflags) $(cvars) $*.cpp
  12.  
  13. dcomperm.exe: $(OBJS)
  14.   $(link) $(ldebug) $(conlflags) -out:$*.exe $** $(guilibs)
  15.  
  16. clean:
  17.     del *.obj
  18.     del *.pch
  19.     del *.exe
  20.  
  21.