summaryrefslogtreecommitdiff
path: root/soltools
diff options
context:
space:
mode:
authorPascal Junck <pjunck@openoffice.org>2004-11-02 15:49:59 +0000
committerPascal Junck <pjunck@openoffice.org>2004-11-02 15:49:59 +0000
commit03949e0b492dafb6a348d77c48c11fee74e952f4 (patch)
tree85a7a99425d38c4369695da1d5634c3d1d22a2f6 /soltools
parentcec6fd2b6c5b7c09bce106a14dadcdc4afa0c9f0 (diff)
INTEGRATION: CWS ivo05 (1.1.2); FILE ADDED
2004/10/04 11:20:59 gh 1.1.2.2: minimize linked libraries 2004/10/04 10:37:07 gh 1.1.2.1: platform independent help-ID compiler
Diffstat (limited to 'soltools')
-rw-r--r--soltools/HIDCompiler/makefile.mk91
1 files changed, 91 insertions, 0 deletions
diff --git a/soltools/HIDCompiler/makefile.mk b/soltools/HIDCompiler/makefile.mk
new file mode 100644
index 000000000000..906723978f92
--- /dev/null
+++ b/soltools/HIDCompiler/makefile.mk
@@ -0,0 +1,91 @@
+#*************************************************************************
+#
+# $RCSfile: makefile.mk,v $
+#
+# $Revision: 1.2 $
+# last change: $Author: pjunck $ $Date: 2004-11-02 16:49:59 $
+#
+# The Contents of this file are made available subject to the terms of
+# either of the following licenses
+#
+# - GNU Lesser General Public License Version 2.1
+# - Sun Industry Standards Source License Version 1.1
+#
+# Sun Microsystems Inc., October, 2000
+#
+# GNU Lesser General Public License Version 2.1
+# =============================================
+# Copyright 2000 by Sun Microsystems, Inc.
+# 901 San Antonio Road, Palo Alto, CA 94303, USA
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License version 2.1, as published by the Free Software Foundation.
+#
+# This library 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 for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+# MA 02111-1307 USA
+#
+#
+# Sun Industry Standards Source License Version 1.1
+# =================================================
+# The contents of this file are subject to the Sun Industry Standards
+# Source License Version 1.1 (the "License"); You may not use this file
+# except in compliance with the License. You may obtain a copy of the
+# License at http://www.openoffice.org/license.html.
+#
+# Software provided under this License is provided on an "AS IS" basis,
+# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+# See the License for the specific provisions governing your rights and
+# obligations concerning the Software.
+#
+# The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+#
+# Copyright: 2000 by Sun Microsystems, Inc.
+#
+# All Rights Reserved.
+#
+# Contributor(s): _______________________________________
+#
+#
+#
+#*************************************************************************
+
+PRJ=..
+
+PRJNAME=soltools
+TARGET=hidc
+TARGETTYPE=CUI
+LIBTARGET=no
+NO_DEFAULT_STL=TRUE
+# --- Settings -----------------------------------------------------
+
+.INCLUDE : settings.mk
+.INCLUDE : libs.mk
+CDEFS+= -DYY_NEVER_INTERACTIVE=1
+
+# --- Files --------------------------------------------------------
+
+# HID compiler
+APP1TARGET= $(TARGET)
+APP1OBJS= $(OBJ)$/hidc_yy.obj
+APP1DEPN= $(OBJ)$/hidc_yy.obj
+APP1LIBSALCPPRT=
+
+DEPOBJFILES=$(APP1OBJS)
+
+# --- Targets ------------------------------------------------------
+
+.INCLUDE : target.mk
+
+$(MISC)$/%_yy.cxx : %lex.l
+ +flex -l -8 -o$@ $<
+