home *** CD-ROM | disk | FTP | other *** search
/ ftp.muug.mb.ca / 2014.06.ftp.muug.mb.ca.tar / ftp.muug.mb.ca / pub / openh323.tar.gz / openh323.tar / openh323 / OpenH323.mak < prev    next >
Makefile  |  2002-11-01  |  706b  |  23 lines

  1. !ifndef PWLIBDIR
  2. PWLIBDIR=c:\work\pwlib
  3. !endif
  4.  
  5. !ifndef OPENH323DIR
  6. OPENH323DIR=$(MAKEDIR)
  7. !endif
  8.  
  9. INCLUDE=$(INCLUDE);$(PWLIBDIR)\include\ptlib\msos;$(PWLIBDIR)\include\pwlib\mswin;$(PWLIBDIR)\include;$(OPENH323DIR)/include
  10. LIB=$(LIB);$(PWLIBDIR)\Lib;$(OPENH323DIR)/Lib
  11.  
  12. all:
  13.     msdev OpenH323Lib.dsp /MAKE "OpenH323Lib - Win32 Release" /USEENV
  14.     msdev OpenH323dll.dsp /MAKE "OpenH323dll - Win32 Release" /USEENV
  15.     cd samples\simple
  16.     msdev simple.dsp /MAKE "SimpH323 - Win32 Release" /USEENV
  17.  
  18. debug: all
  19.     msdev OpenH323Lib.dsp /MAKE "OpenH323Lib - Win32 Debug" /USEENV
  20.     msdev OpenH323dll.dsp /MAKE "OpenH323dll - Win32 Debug" /USEENV
  21.     cd samples\simple
  22.     msdev simple.dsp /MAKE "SimpH323 - Win32 Debug" /USEENV
  23.