From 6da3e92dab82554db8492d2bd7981ecd9ef3fd65 Mon Sep 17 00:00:00 2001 From: wangzhengquan <wangzhengquan85@126.com> Date: 星期四, 23 七月 2020 15:57:34 +0800 Subject: [PATCH] sycronized --- Makefile | 15 +++++++-------- 1 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 97e2319..18a1a54 100755 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -DIRS = common squeue test - +DIRS = src test_socket demo +TAR_NAME = shm_queue.tar.gz all: for i in $(DIRS); do \ (cd $$i && echo "making $$i" && $(MAKE) ) || exit 1; \ @@ -9,10 +9,9 @@ for i in $(DIRS); do \ (cd $$i && echo "cleaning $$i" && $(MAKE) clean) || exit 1; \ done + rm -rf build + ipcrm -a -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