home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / samples / ipc / makefile.vc < prev    next >
Makefile  |  2000-01-08  |  425b  |  21 lines

  1. #
  2. # File:        makefile.vc
  3. # Author:    Julian Smart
  4. # Created:    1999
  5. # Updated:    
  6. # Copyright:    (c) Julian Smart
  7. #
  8. # Makefile : Builds sample (VC++, WIN32)
  9. # Use FINAL=1 argument to nmake to build final version with no debug info.
  10.  
  11. !include $(WXWIN)/src/makevc.env
  12.  
  13. all:
  14.     nmake -f server.vc FINAL=$(FINAL)
  15.     nmake -f client.vc FINAL=$(FINAL)
  16.  
  17. clean:
  18.     nmake -f server.vc clean
  19.     nmake -f client.vc clean
  20.  
  21.