]>
Commit | Line | Data |
---|---|---|
1 | ############################################################################## | |
2 | # Name: src/regex/makefile.sc | |
3 | # Purpose: build regex Digital Mars 8.33 compiler | |
4 | # Author: Chris Elliott | |
5 | # Created: 21.01.03 | |
6 | # RCS-ID: $Id$ | |
7 | # Licence: wxWindows licence | |
8 | ############################################################################## | |
9 | ||
10 | WXDIR = ..\.. | |
11 | ||
12 | include $(WXDIR)\src\makesc.env | |
13 | ||
14 | LIBTARGET=$(WXDIR)\lib\regex$(SC_SUFFIX).lib | |
15 | THISDIR=$(WXDIR)\src\regex | |
16 | ||
17 | # variables | |
18 | OBJECTS = \ | |
19 | $(THISDIR)\regcomp.obj \ | |
20 | $(THISDIR)\regexec.obj \ | |
21 | $(THISDIR)\regerror.obj \ | |
22 | $(THISDIR)\regfree.obj \ | |
23 | ||
24 | include $(WXDIR)\src\makelib.sc | |
25 |