1--- misc/rasqal-0.9.16/src/makefile.mk Thu Nov 6 15:56:45 2008 2+++ misc/build/rasqal-0.9.16/src/makefile.mk Thu Nov 6 15:55:09 2008 3@@ -1,1 +1,97 @@ 4-dummy 5+#************************************************************************* 6+# 7+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 8+# 9+# Copyright 2000, 2010 Oracle and/or its affiliates. 10+# 11+# OpenOffice.org - a multi-platform office productivity suite 12+# 13+# This file is part of OpenOffice.org. 14+# 15+# OpenOffice.org is free software: you can redistribute it and/or modify 16+# it under the terms of the GNU Lesser General Public License version 3 17+# only, as published by the Free Software Foundation. 18+# 19+# OpenOffice.org is distributed in the hope that it will be useful, 20+# but WITHOUT ANY WARRANTY; without even the implied warranty of 21+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22+# GNU Lesser General Public License version 3 for more details 23+# (a copy is included in the LICENSE file that accompanied this code). 24+# 25+# You should have received a copy of the GNU Lesser General Public License 26+# version 3 along with OpenOffice.org. If not, see 27+# <http://www.openoffice.org/license.html> 28+# for a copy of the LGPLv3 License. 29+# 30+#************************************************************************* 31+ 32+PRJ=..$/..$/..$/..$/.. 33+ 34+PRJNAME=redland 35+TARGET=rasqal 36+LIBTARGET=NO 37+UWINAPILIB= 38+ 39+EXTERNAL_WARNINGS_NOT_ERRORS=TRUE 40+ 41+ 42+# --- Settings ----------------------------------------------------- 43+ 44+.INCLUDE : settings.mk 45+ 46+CDEFS+=-DRASQAL_INTERNAL -DWIN32 -DNDEBUG -D_WINDOWS -D_USRDLL -DWIN32_EXPORTS -D_MT 47+ 48+# --- Files -------------------------------------------------------- 49+ 50+SLOFILES = \ 51+ $(SLO)$/rasqal_datetime.obj \ 52+ $(SLO)$/rasqal_decimal.obj \ 53+ $(SLO)$/rasqal_engine.obj \ 54+ $(SLO)$/rasqal_expr.obj \ 55+ $(SLO)$/rasqal_feature.obj \ 56+ $(SLO)$/rasqal_general.obj \ 57+ $(SLO)$/rasqal_graph_pattern.obj \ 58+ $(SLO)$/rasqal_literal.obj \ 59+ $(SLO)$/rasqal_map.obj \ 60+ $(SLO)$/rasqal_query_results.obj \ 61+ $(SLO)$/rasqal_query.obj \ 62+ $(SLO)$/rasqal_raptor.obj \ 63+ $(SLO)$/rasqal_result_formats.obj \ 64+ $(SLO)$/rasqal_rowsource.obj \ 65+ $(SLO)$/rasqal_sparql_xml.obj \ 66+ $(SLO)$/rasqal_xsd_datatypes.obj \ 67+ $(SLO)$/rdql_lexer.obj \ 68+ $(SLO)$/rdql_parser.obj \ 69+ $(SLO)$/sparql_lexer.obj \ 70+ $(SLO)$/sparql_parser.obj \ 71+ $(SLO)$/strcasecmp.obj \ 72+ 73+ 74+# $(SLO)$/rasqal_redland.obj \ 75+ 76+SHL1DEPN= makefile.mk 77+SHL1OBJS= $(SLOFILES) 78+SHL1USE_EXPORTS=name 79+ 80+#SHL1TARGET= $(TARGET)$(DLLPOSTFIX) 81+SHL1TARGET= $(TARGET) 82+SHL1IMPLIB= lib$(TARGET) 83+ 84+#SHL1VERSIONMAP=../service/exports.map 85+.IF "$(GUI)"=="OS2" 86+SHL1VERSIONMAP=$(PRJ)/rasqal/rasqal2.map 87+.ENDIF 88+SHL1DEF=$(MISC)$/$(SHL1TARGET).def 89+DEF1NAME=$(SHL1TARGET) 90+ 91+SHL1STDLIBS= \ 92+ $(PRJ)$/$(INPATH)$/lib$/libraptor.lib \ 93+ 94+ 95+#$(LIBXML2LIB) \ 96+# $(XSLTLIB) \ 97+ 98+# --- Targets ------------------------------------------------------ 99+ 100+.INCLUDE : target.mk 101+ 102