2000-09-18 14:29:57 +00:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-11 11:10:19 +00:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
2010-02-12 15:01:35 +01:00
|
|
|
# Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 14:29:57 +00:00
|
|
|
#
|
2008-04-11 11:10:19 +00:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 14:29:57 +00:00
|
|
|
#
|
2008-04-11 11:10:19 +00:00
|
|
|
# This file is part of OpenOffice.org.
|
2000-09-18 14:29:57 +00:00
|
|
|
#
|
2008-04-11 11:10:19 +00:00
|
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# only, as published by the Free Software Foundation.
|
2000-09-18 14:29:57 +00:00
|
|
|
#
|
2008-04-11 11:10:19 +00:00
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 14:29:57 +00:00
|
|
|
#
|
2008-04-11 11:10:19 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
2000-09-18 14:29:57 +00:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
|
|
|
PRJ=..$/..
|
|
|
|
|
|
|
|
PRJNAME=codemaker
|
|
|
|
TARGET=cppumaker
|
|
|
|
TARGETTYPE=CUI
|
|
|
|
LIBTARGET=NO
|
|
|
|
|
|
|
|
ENABLE_EXCEPTIONS=TRUE
|
|
|
|
|
|
|
|
# --- Settings -----------------------------------------------------
|
2005-10-27 16:12:10 +00:00
|
|
|
.INCLUDE : settings.mk
|
2011-06-13 02:43:35 +03:00
|
|
|
|
|
|
|
.IF "$(OS)" == "IOS"
|
|
|
|
all:
|
|
|
|
@echo No build-time tools for this platform
|
|
|
|
.ENDIF
|
|
|
|
|
2005-10-27 16:12:10 +00:00
|
|
|
.INCLUDE : $(PRJ)$/codemaker.pmk
|
2000-09-18 14:29:57 +00:00
|
|
|
|
|
|
|
# --- Files --------------------------------------------------------
|
|
|
|
|
2001-07-18 15:34:15 +00:00
|
|
|
.IF "$(GUI)"=="WNT"
|
2007-03-26 13:03:28 +00:00
|
|
|
.IF "$(COM)"!="GCC"
|
2001-07-18 15:34:15 +00:00
|
|
|
CFLAGSNOOPT+=-Ob0
|
|
|
|
.ENDIF
|
2007-03-26 13:03:28 +00:00
|
|
|
.ENDIF
|
2001-07-18 15:34:15 +00:00
|
|
|
|
|
|
|
OBJFILES= $(OBJ)$/cppumaker.obj \
|
2001-08-17 12:15:48 +00:00
|
|
|
$(OBJ)$/cppuoptions.obj \
|
2004-06-04 02:13:12 +00:00
|
|
|
$(OBJ)$/cpputype.obj \
|
|
|
|
$(OBJ)$/dumputils.obj \
|
|
|
|
$(OBJ)$/includes.obj
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2001-07-18 15:34:15 +00:00
|
|
|
NOOPTFILES= \
|
|
|
|
$(OBJ)$/cpputype.obj
|
2000-09-18 14:29:57 +00:00
|
|
|
|
|
|
|
APP1TARGET= $(TARGET)
|
2008-07-11 12:29:20 +00:00
|
|
|
APP1RPATH=SDK
|
2001-07-18 15:34:15 +00:00
|
|
|
APP1OBJS= $(OBJFILES)
|
2000-09-18 14:29:57 +00:00
|
|
|
|
2006-03-15 08:15:30 +00:00
|
|
|
APP1DEPN= $(OUT)$/lib$/$(CODEMAKERLIBDEPN) $(OUT)$/lib$/$(COMMONCPPLIBDEPN)
|
2009-04-27 11:24:10 +00:00
|
|
|
APP1STDLIBS= $(SALLIB) $(SALHELPERLIB) $(REGLIB) $(CODEMAKERLIBST) $(COMMONCPPLIBST)
|
2000-09-18 14:29:57 +00:00
|
|
|
|
|
|
|
.INCLUDE : target.mk
|