From 845fcff94aab1eb0ac3955b19e712cc50f68099e Mon Sep 17 00:00:00 2001
From: wangzhengquan <wangzhengquan85@126.com>
Date: 星期四, 14 一月 2021 10:09:39 +0800
Subject: [PATCH] update

---
 Makefile |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/Makefile b/Makefile
index 97e2319..df8a65d 100755
--- a/Makefile
+++ b/Makefile
@@ -1,18 +1,18 @@
-DIRS = common squeue test
+# debug "make --just-print"
+DIRS = src test_net_socket 
+TAR_NAME = shm_queue.tar.gz
 
 all:
-	for i in $(DIRS); do \
-		(cd $$i && echo "making $$i" && $(MAKE) ) || exit 1; \
+	@for i in $(DIRS); do \
+		(cd $$i && echo ">>>>>> making $$i ..." && $(MAKE) ) || exit 1; \
 	done
 
 clean:
-	for i in $(DIRS); do \
-		(cd $$i && echo "cleaning $$i" && $(MAKE) clean) || exit 1; \
+	@for i in $(DIRS); do \
+		(cd $$i && echo ">>>>>> cleaning $$i ..." && $(MAKE) clean) || exit 1; \
 	done
+	
 
-ipcrm:
-	- ipcrm -a
-	- ipcrm -M 0x1234
-	- ipcrm -S 145
-	- ipcrm -S 146
-	- ipcrm -S 8899
+tar:
+	rm -f $(TAR_NAME)
+	git archive --format tar.gz --output $(TAR_NAME) master
\ No newline at end of file

--
Gitblit v1.8.0