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+# Licensed to the Apache Software Foundation (ASF) under one 8+# or more contributor license agreements. See the NOTICE file 9+# distributed with this work for additional information 10+# regarding copyright ownership. The ASF licenses this file 11+# to you under the Apache License, Version 2.0 (the 12+# "License"); you may not use this file except in compliance 13+# with the License. You may obtain a copy of the License at 14+# 15+# http://www.apache.org/licenses/LICENSE-2.0 16+# 17+# Unless required by applicable law or agreed to in writing, 18+# software distributed under the License is distributed on an 19+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 20+# KIND, either express or implied. See the License for the 21+# specific language governing permissions and limitations 22+# under the License. 23+# 24+#************************************************************** 25+ 26+PRJ=..$/..$/..$/..$/.. 27+ 28+PRJNAME=redland 29+TARGET=rasqal 30+LIBTARGET=NO 31+UWINAPILIB= 32+ 33+EXTERNAL_WARNINGS_NOT_ERRORS=TRUE 34+ 35+ 36+# --- Settings ----------------------------------------------------- 37+ 38+.INCLUDE : settings.mk 39+ 40+CDEFS+=-DRASQAL_INTERNAL -DWIN32 -DNDEBUG -D_WINDOWS -D_USRDLL -DWIN32_EXPORTS -D_MT 41+ 42+# --- Files -------------------------------------------------------- 43+ 44+SLOFILES = \ 45+ $(SLO)$/rasqal_datetime.obj \ 46+ $(SLO)$/rasqal_decimal.obj \ 47+ $(SLO)$/rasqal_engine.obj \ 48+ $(SLO)$/rasqal_expr.obj \ 49+ $(SLO)$/rasqal_feature.obj \ 50+ $(SLO)$/rasqal_general.obj \ 51+ $(SLO)$/rasqal_graph_pattern.obj \ 52+ $(SLO)$/rasqal_literal.obj \ 53+ $(SLO)$/rasqal_map.obj \ 54+ $(SLO)$/rasqal_query_results.obj \ 55+ $(SLO)$/rasqal_query.obj \ 56+ $(SLO)$/rasqal_raptor.obj \ 57+ $(SLO)$/rasqal_result_formats.obj \ 58+ $(SLO)$/rasqal_rowsource.obj \ 59+ $(SLO)$/rasqal_sparql_xml.obj \ 60+ $(SLO)$/rasqal_xsd_datatypes.obj \ 61+ $(SLO)$/rdql_lexer.obj \ 62+ $(SLO)$/rdql_parser.obj \ 63+ $(SLO)$/sparql_lexer.obj \ 64+ $(SLO)$/sparql_parser.obj \ 65+ $(SLO)$/strcasecmp.obj \ 66+ 67+ 68+# $(SLO)$/rasqal_redland.obj \ 69+ 70+SHL1DEPN= makefile.mk 71+SHL1OBJS= $(SLOFILES) 72+SHL1USE_EXPORTS=name 73+ 74+#SHL1TARGET= $(TARGET)$(DLLPOSTFIX) 75+SHL1TARGET= $(TARGET) 76+SHL1IMPLIB= lib$(TARGET) 77+ 78+#SHL1VERSIONMAP=../service/exports.map 79+.IF "$(GUI)"=="OS2" 80+SHL1VERSIONMAP=$(PRJ)/rasqal/rasqal2.map 81+.ENDIF 82+SHL1DEF=$(MISC)$/$(SHL1TARGET).def 83+DEF1NAME=$(SHL1TARGET) 84+ 85+SHL1STDLIBS= \ 86+ $(PRJ)$/$(INPATH)$/lib$/libraptor.lib \ 87+ 88+ 89+#$(LIBXML2LIB) \ 90+# $(XSLTLIB) \ 91+ 92+# --- Targets ------------------------------------------------------ 93+ 94+.INCLUDE : target.mk 95+ 96