]> Nishi Git Mirror - libw3.git/commitdiff
aa
authornishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Wed, 17 Jan 2024 00:35:36 +0000 (00:35 +0000)
committernishi <nishi@d27a3e52-49c5-7645-884c-6793ebffc270>
Wed, 17 Jan 2024 00:35:36 +0000 (00:35 +0000)
git-svn-id: file:///raid/svn-main/nishi-libw3/trunk@1 d27a3e52-49c5-7645-884c-6793ebffc270

Makefile [new file with mode: 0644]
config.mk [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..aa8871f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+# $Id$
+include config.mk
+
+CC := cc
+CFLAGS := -g -std=c99 -fPIC
+LDFLAGS :=
+LIBS :=
+
+ifdef SSL
+LIBS += -lssl -lcrypto
+endif
+
+.PHONY: all
+
+all: ./Library/libw3.so
+
+./Library/libw3.so:
+       $(MAKE) -C ./Library
diff --git a/config.mk b/config.mk
new file mode 100644 (file)
index 0000000..c92f39f
--- /dev/null
+++ b/config.mk
@@ -0,0 +1 @@
+SSL=YES