home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2240.zip / wxWindows-2.4.0 / src / makefile.va < prev    next >
Makefile  |  1999-09-15  |  711b  |  36 lines

  1. #
  2. # File:     makefile.va
  3. # Author:   David Webster
  4. # Created:  1999
  5. # Updated:
  6. # Copyright:    (c) 1999, David Webster
  7. #
  8. # "%W% %G%"
  9. #
  10. # Makefile : Builds wxWindows library wx.lib for VisualAge C++ V3.0 for OS/2
  11. # Arguments:
  12. #
  13. # FINAL=1 argument to nmake to build version with no debugging info.
  14. # dll builds a library (wxdll.lib) suitable for creating DLLs
  15. #    * Note that the dll target is experimental - see docs/dll.txt.
  16. #
  17. !include <makeva.env>
  18.  
  19. THISDIR=$(WXDIR)\src
  20.  
  21. all:
  22.     cd os2
  23.     nmake -f makefile.va
  24.     cd $(THISDIR)
  25.  
  26. clean:
  27.     cd os2
  28.     nmake -f makefile.va clean
  29.     cd $(THISDIR)
  30.  
  31. cleanall:
  32.     cd os2
  33.     nmake -f makefile.va cleanall
  34.     cd $(THISDIR)
  35.  
  36.