From 68826376ee5f47783c644c6604f4411ec747cd7e Mon Sep 17 00:00:00 2001
From: guowenxue <guowenxue@gmail.com>
Date: Fri, 14 Nov 2025 23:52:16 +0800
Subject: [PATCH] Add UDP DNS client source code
---
project/4.mqttd/openlibs/makefile | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/project/4.mqttd/openlibs/makefile b/project/4.mqttd/openlibs/makefile
new file mode 100644
index 0000000..022cf08
--- /dev/null
+++ b/project/4.mqttd/openlibs/makefile
@@ -0,0 +1,16 @@
+
+PRJ_PATH=$(shell pwd)
+
+openssl_dir := $(shell ls -d openssl/ 2>/dev/null | sed 's|/||g')
+other_dirs := $(shell ls -d */ 2>/dev/null | grep -v '^install/' | grep -v '^openssl/' | sed 's|/||g')
+libs := $(openssl_dir) $(other_dirs)
+
+# clear CFLAGS
+CLFAGS=
+
+all:
+ for dir in ${libs} ; do cd ${PRJ_PATH}/$${dir} && ./build.sh ; done
+
+clean:
+ rm -rf install
+ for dir in ${libs} ; do cd ${PRJ_PATH}/$${dir} && ./build.sh -c ; done
--
Gitblit v1.9.1