]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | # |
2 | # File: makefile.bcc | |
3 | # Author: Julian Smart | |
62448488 | 4 | # Created: 1998 |
c801d85f | 5 | # Updated: |
c801d85f | 6 | # |
62448488 | 7 | # Builds a BC++ 16-bit sample |
c801d85f KB |
8 | |
9 | !if "$(WXWIN)" == "" | |
10 | !error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx | |
11 | !endif | |
12 | ||
c801d85f | 13 | WXDIR = $(WXWIN) |
c801d85f | 14 | |
62448488 JS |
15 | TARGET=mdi |
16 | OBJECTS=$(TARGET).obj | |
c801d85f | 17 | |
62448488 | 18 | !include $(WXDIR)\src\makeprog.bcc |
c801d85f | 19 |