src/server/plugins/postgresql/Makefile

changeset 385
a1f4cb076d2f
parent 366
47bc686fafe4
child 399
05d4e75d1912
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/server/plugins/postgresql/Makefile	Sat Sep 24 16:26:10 2022 +0200
@@ -0,0 +1,69 @@
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
+#
+# Copyright 2022 Olaf Wintermann. All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+#
+#   1. Redistributions of source code must retain the above copyright
+#      notice, this list of conditions and the following disclaimer.
+#
+#   2. Redistributions in binary form must reproduce the above copyright
+#      notice, this list of conditions and the following disclaimer in the
+#      documentation and/or other materials provided with the distribution.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+
+BUILD_ROOT = ../../../..
+
+include $(BUILD_ROOT)/config.mk
+
+# list of source files
+SRC  = init.c
+SRC += resource.c
+SRC += service.c
+SRC += vfs.c
+SRC += webdav.c
+SRC += config.c
+
+TEST_SRC  = pgtest.c
+
+OBJ = $(SRC:%.c=$(BUILD_ROOT)/build/server/plugins/postgresql/%$(OBJ_EXT))
+
+TEST_OBJ = $(TEST_SRC:%.c=$(BUILD_ROOT)/build/server/plugins/postgresql/%$(OBJ_EXT))
+	
+BUILD_DIR = $(BUILD_ROOT)/build/server/plugins/postgresql
+
+PLUGIN_TARGET = $(BUILD_ROOT)/build/lib/libwspostgresql$(LIB_EXT)
+TEST_TARGET = $(BUILD_ROOT)/build/lib/libwspgtest$(LIB_EXT)
+
+PGTEST = $(BUILD_ROOT)/build/server/plugins/postgresql/test
+
+all: $(PLUGIN_TARGET) $(TEST_TARGET) $(PGTEST)
+
+$(BUILD_DIR):
+	mkdir -p $(BUILD_DIR)
+
+$(PLUGIN_TARGET): $(BUILD_DIR) $(OBJ)
+	$(CC) $(POSTGRESQL_LDFLAGS) $(SHLIB_LDFLAGS) -o $@ $(OBJ)
+	
+$(TEST_TARGET): $(BUILD_DIR) $(OBJ) $(TEST_OBJ)
+	$(CC) $(POSTGRESQL_LDFLAGS) $(SHLIB_LDFLAGS) -o $@ $(OBJ) $(TEST_OBJ)
+
+$(BUILD_DIR)/%.o: %.c
+	$(CC) $(CFLAGS) $(POSTGRESQL_CFLAGS) $(SHLIB_CFLAGS) -c -o $@ $<
+
+$(PGTEST): $(OBJ)
+	cd test; $(MAKE)

mercurial