diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-03-06 10:46:52 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-03-06 10:46:52 +0000 |
commit | 9b495893e89fa0a00e586f8582fa745f4460510a (patch) | |
tree | 79a5835008229a584e7e44c5b5e68b7e25b4e04f /toolkit | |
parent | dc0f4040eb9c23da03414a06f04467db51bd642a (diff) |
INTEGRATION: CWS layout_DEV300 (1.1.2); FILE ADDED
2008/02/15 09:56:41 jcn 1.1.2.3: Remove byteseq.cxx c&p from xml_byteseq.cxx.
2008/02/11 15:13:37 jcn 1.1.2.2: Make layout stuff in toolkit build with --enable-layout.
2008/02/08 18:44:44 jcn 1.1.2.1: Initial toolkit import from ee9a2fcc29d7e2f01cc80ef7c13bf7bc7d55ae7e.
layout/source/awt -> toolkit/source/awt
layout/source/core -> toolkit/source/layout
layout/source/wrapper -> toolkit/source/vclcompat
layout/inc/layout -> toolkit/inc/layout
layout/source/inc -> toolkit/inc/layout
layout/workben -> toolkit/workben/layout
That's ooo-build trunk r11539 @ ooh680-m5/src680-m245.
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/layout/makefile.mk | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/toolkit/source/layout/makefile.mk b/toolkit/source/layout/makefile.mk new file mode 100644 index 000000000000..ee66c10688b7 --- /dev/null +++ b/toolkit/source/layout/makefile.mk @@ -0,0 +1,53 @@ +PRJ=..$/.. +PRJNAME=toolkit +TARGET=layoutcore +ENABLE_EXCEPTIONS=true +TARGETTYPE=GUI + +.INCLUDE : settings.mk +.INCLUDE : $(PRJ)$/util$/makefile.pmk + +.IF "$(ENABLE_LAYOUT)" == "TRUE" + +.IF "$(COMNAME)" == "gcc3" +CFLAGS+=-I../$(PRJ)/xmlscript/source +CFLAGS+=-Wall -Wno-non-virtual-dtor +.ENDIF + +##CFLAGS += -DENABLE_LAYOUT=1 + +CXXFILES= \ + bin.cxx \ + box.cxx \ + byteseq.cxx \ + container.cxx \ + dialogbuttonhbox.cxx \ + factory.cxx \ + flow.cxx \ + helper.cxx \ + import.cxx \ + proplist.cxx \ + root.cxx \ + table.cxx \ + timer.cxx \ + translate.cxx + +SLOFILES= \ + $(SLO)$/bin.obj \ + $(SLO)$/box.obj \ + $(SLO)$/byteseq.obj \ + $(SLO)$/container.obj \ + $(SLO)$/dialogbuttonhbox.obj \ + $(SLO)$/factory.obj \ + $(SLO)$/flow.obj \ + $(SLO)$/helper.obj \ + $(SLO)$/import.obj \ + $(SLO)$/proplist.obj \ + $(SLO)$/root.obj \ + $(SLO)$/table.obj \ + $(SLO)$/timer.obj \ + $(SLO)$/translate.obj + +.ENDIF # ENABLE_LAYOUT == "TRUE" + +.INCLUDE : target.mk |