View | Details | Raw Unified | Return to issue 11215
Collapse All | Expand All

(-)sw/prj/build.lst (-1 / +2 lines)
Lines 63-68 Link Here
63
sw	sw\source\filter\html					nmake	-	all	sw_html NULL
63
sw	sw\source\filter\html					nmake	-	all	sw_html NULL
64
sw	sw\source\filter\lotus					nmake	-	all	sw_lotus NULL
64
sw	sw\source\filter\lotus					nmake	-	all	sw_lotus NULL
65
sw	sw\source\filter\rtf					nmake	-	all	sw_rtf NULL
65
sw	sw\source\filter\rtf					nmake	-	all	sw_rtf NULL
66
sw      sw\source\filter\lwp                                    nmake   -       all     sw_lwp NULL
66
sw	sw\source\filter\sw6					nmake	-	all	sw_sw6 NULL
67
sw	sw\source\filter\sw6					nmake	-	all	sw_sw6 NULL
67
sw	sw\source\filter\w4w					nmake	-	all	sw_w4w NULL
68
sw	sw\source\filter\w4w					nmake	-	all	sw_w4w NULL
68
sw	sw\source\filter\writer					nmake	-	all	sw_wrtr NULL
69
sw	sw\source\filter\writer					nmake	-	all	sw_wrtr NULL
Lines 71-75 Link Here
71
sw	sw\source\filter\xml					nmake	-	all	sw_xml NULL
72
sw	sw\source\filter\xml					nmake	-	all	sw_xml NULL
72
sw  sw\source\ui                            nmake   -   all sw_ui sw_app sw_cctrl sw_chrdl sw_conf sw_dbui sw_dchdl sw_dcvw sw_dlg sw_envlp sw_fldui sw_fmtui sw_frmdl sw_globd sw_index sw_ling sw_misc sw_rbbar sw_shell sw_table sw_uiuno sw_uivw sw_utlui sw_web sw_wrtsh NULL
73
sw  sw\source\ui                            nmake   -   all sw_ui sw_app sw_cctrl sw_chrdl sw_conf sw_dbui sw_dchdl sw_dcvw sw_dlg sw_envlp sw_fldui sw_fmtui sw_frmdl sw_globd sw_index sw_ling sw_misc sw_rbbar sw_shell sw_table sw_uiuno sw_uivw sw_utlui sw_web sw_wrtsh NULL
73
sw  sw\source\core                          nmake   -   all sw_core sw_attr sw_bast sw_crsr sw_dcnd sw_doc sw_draw sw_edit sw_excpt sw_fld sw_frmed sw_grph sw_layo sw_ole sw_para sw_sw3io sw_swg sw_text sw_tox sw_txtnd sw_uco sw_undo sw_view sw_acc sw_objpos NULL
74
sw  sw\source\core                          nmake   -   all sw_core sw_attr sw_bast sw_crsr sw_dcnd sw_doc sw_draw sw_edit sw_excpt sw_fld sw_frmed sw_grph sw_layo sw_ole sw_para sw_sw3io sw_swg sw_text sw_tox sw_txtnd sw_uco sw_undo sw_view sw_acc sw_objpos NULL
74
sw	sw\source\filter						nmake	-	all	sw_flt sw_ascii sw_bsflt sw_excel sw_html sw_lotus sw_rtf sw_sw6 sw_w4w sw_wrtr sw_ww1 sw_ww8 sw_xml NULL
75
sw	sw\source\filter						nmake	-	all	sw_flt sw_ascii sw_bsflt sw_excel sw_html sw_lotus sw_rtf sw_lwp sw_sw6 sw_w4w sw_wrtr sw_ww1 sw_ww8 sw_xml NULL
75
sw	sw\util									nmake	-	all	sw_util sw_core sw_flt sw_sdi sw_ui NULL
76
sw	sw\util									nmake	-	all	sw_util sw_core sw_flt sw_sdi sw_ui NULL
(-)sw/source/filter/makefile.mk (-1 / +2 lines)
Lines 85-95 Link Here
85
	$(SLB)$/html.lib \
85
	$(SLB)$/html.lib \
86
	$(SLB)$/lotus.lib \
86
	$(SLB)$/lotus.lib \
87
	$(SLB)$/rtf.lib \
87
	$(SLB)$/rtf.lib \
88
        $(SLB)$/lwp.lib \
88
	$(SLB)$/w4w.lib \
89
	$(SLB)$/w4w.lib \
89
	$(SLB)$/writer.lib \
90
	$(SLB)$/writer.lib \
90
	$(SLB)$/ww1.lib \
91
	$(SLB)$/ww1.lib \
91
	$(SLB)$/ww8.lib \
92
	$(SLB)$/ww8.lib \
92
	$(SLB)$/xml.lib
93
	$(SLB)$/xml.lib 
93
94
94
.IF "$(compact)" == ""
95
.IF "$(compact)" == ""
95
SUBLIBS+= \
96
SUBLIBS+= \
(-) (+22 lines)
Added Link Here
1
PRJ=..$/..$/..
2
3
PRJNAME=sw
4
TARGET=lwp
5
6
# --- Settings -----------------------------------------------------
7
8
.INCLUDE :  $(PRJ)$/inc$/swpre.mk
9
.INCLUDE :  settings.mk
10
.INCLUDE :  $(PRJ)$/inc$/sw.mk
11
12
# --- Files --------------------------------------------------------
13
14
CXXFILES = \
15
    lwpparser.cxx 
16
SLOFILES = \
17
    $(SLO)$/lwpparser.obj
18
19
# --- Tagets -------------------------------------------------------
20
21
.INCLUDE :  target.mk
22

Return to issue 11215