]>
Commit | Line | Data |
---|---|---|
457814b5 JS |
1 | # |
2 | # File: makefile.bcc | |
3 | # Author: Julian Smart | |
e3a43801 | 4 | # Created: 1998 |
457814b5 | 5 | # Updated: |
457814b5 | 6 | # |
e3a43801 | 7 | # Builds a BC++ 16-bit Dialog Editor |
457814b5 JS |
8 | |
9 | !if "$(WXWIN)" == "" | |
10 | !error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx | |
11 | !endif | |
12 | ||
457814b5 | 13 | WXDIR = $(WXWIN) |
457814b5 | 14 | |
e3a43801 JS |
15 | TARGET=dialoged |
16 | OBJECTS=dialoged.obj reseditr.obj dlghndlr.obj reswrite.obj\ | |
17 | winprop.obj edtree.obj edlist.obj symbtabl.obj winstyle.obj | |
457814b5 | 18 | |
e3a43801 | 19 | !include $(WXDIR)\src\makeprog.bcc |
457814b5 | 20 |