| 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 | |