1--- misc/redland-1.0.17/src/makefile.mk	2016-08-23 14:55:21.874698000 -0700
2+++ misc/build/redland-1.0.17/src/makefile.mk	2016-08-25 15:05:47.091064000 -0700
3@@ -1 +1,118 @@
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=librdf
30+LIBTARGET=NO
31+UWINAPILIB=
32+
33+EXTERNAL_WARNINGS_NOT_ERRORS=TRUE
34+
35+
36+# --- Settings -----------------------------------------------------
37+
38+.INCLUDE :  settings.mk
39+
40+CDEFS+=-DRAPTOR_INTERNAL -DWIN32 -DNDEBUG -D_WINDOWS -D_USRDLL -DWIN32_EXPORTS -DHAVE_CONFIG_H -DLIBRDF_INTERNAL -I$(PRJ)$/$(INPATH)$/inc
41+
42+# --- Files --------------------------------------------------------
43+
44+SLOFILES =	\
45+   $(SLO)$/rdf_concepts.obj \
46+   $(SLO)$/rdf_digest.obj \
47+   $(SLO)$/rdf_digest_md5.obj \
48+   $(SLO)$/rdf_digest_sha1.obj \
49+   $(SLO)$/rdf_files.obj \
50+   $(SLO)$/rdf_hash.obj \
51+   $(SLO)$/rdf_hash_cursor.obj \
52+   $(SLO)$/rdf_hash_memory.obj \
53+   $(SLO)$/rdf_heuristics.obj \
54+   $(SLO)$/rdf_init.obj \
55+   $(SLO)$/rdf_iterator.obj \
56+   $(SLO)$/rdf_list.obj \
57+   $(SLO)$/rdf_log.obj \
58+   $(SLO)$/rdf_model.obj \
59+   $(SLO)$/rdf_model_storage.obj \
60+   $(SLO)$/rdf_node.obj \
61+   $(SLO)$/rdf_node_common.obj \
62+   $(SLO)$/rdf_parser.obj \
63+   $(SLO)$/rdf_parser_raptor.obj \
64+   $(SLO)$/rdf_query.obj \
65+   $(SLO)$/rdf_query_rasqal.obj \
66+   $(SLO)$/rdf_query_results.obj \
67+   $(SLO)$/rdf_raptor.obj \
68+   $(SLO)$/rdf_serializer.obj \
69+   $(SLO)$/rdf_serializer_raptor.obj \
70+   $(SLO)$/rdf_statement.obj \
71+   $(SLO)$/rdf_statement_common.obj \
72+   $(SLO)$/rdf_storage.obj \
73+   $(SLO)$/rdf_storage_file.obj \
74+   $(SLO)$/rdf_storage_hashes.obj \
75+   $(SLO)$/rdf_storage_list.obj \
76+   $(SLO)$/rdf_storage_trees.obj \
77+   $(SLO)$/rdf_stream.obj \
78+   $(SLO)$/rdf_uri.obj \
79+   $(SLO)$/rdf_utf8.obj \
80+
81+#   $(SLO)$/rdf_hash_bdb.obj \
82+#   $(SLO)$/rdf_query_virtuoso.obj \
83+#   $(SLO)$/rdf_storage_mysql.obj \
84+#   $(SLO)$/rdf_storage_postgresql.obj \
85+#   $(SLO)$/rdf_storage_sql.obj \
86+#   $(SLO)$/rdf_storage_sql_test.obj \
87+#   $(SLO)$/rdf_storage_sqlite.obj \
88+#   $(SLO)$/rdf_storage_tstore.obj \
89+#   $(SLO)$/rdf_storage_virtuoso.obj \
90+
91+SHL1DEPN=   makefile.mk
92+SHL1OBJS=   $(SLOFILES)
93+
94+#SHL1TARGET=	$(TARGET)$(DLLPOSTFIX)
95+SHL1TARGET=	$(TARGET)
96+SHL1IMPLIB= $(TARGET)
97+SHL1USE_EXPORTS=name
98+
99+#SHL1VERSIONMAP=../service/exports.map
100+.IF "$(GUI)"=="OS2"
101+SHL1VERSIONMAP=$(PRJ)/raptor/raptor2.map
102+.ENDIF
103+SHL1DEF=$(MISC)$/$(SHL1TARGET).def
104+DEF1NAME=$(SHL1TARGET)
105+
106+.IF "$(GUI)"=="OS2"
107+SHL1STDLIBS= \
108+    $(OPENSSLLIB) \
109+    $(PRJ)$/$(INPATH)$/lib$/raptor.lib \
110+    $(PRJ)$/$(INPATH)$/lib$/rasqal.lib
111+.ELSE
112+SHL1STDLIBS= \
113+    $(LIBXML2LIB) \
114+    $(XSLTLIB) \
115+    $(PRJ)$/$(INPATH)$/lib$/libraptor.lib \
116+    $(PRJ)$/$(INPATH)$/lib$/librasqal.lib
117+.ENDIF
118+
119+# --- Targets ------------------------------------------------------
120+
121+.INCLUDE :  target.mk
122+
123