Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
HR_Socket_Msg_Demo
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
马伊齐
HR_Socket_Msg_Demo
Commits
f2f03676
Commit
f2f03676
authored
Jan 17, 2024
by
马伊齐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add BIN_FOLDER target to Makefile
parent
af273b1a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
Makefile
Makefile
+6
-1
No files found.
Makefile
100755 → 100644
View file @
f2f03676
...
...
@@ -130,12 +130,17 @@ MsgServer : sock_msg.o
@
$(CC)
-o
$(OUT_DIR)
/
$@
.out
$(OBJ_DIR)
/
$@
.o
$(OBJ_DIR)
/
$<
# 编译库文件
sock_msg.o
:
$(LIB_DIR)/sock_msg.c $(LIB_DIR)/sock_msg.h
sock_msg.o
:
$(LIB_DIR)/sock_msg.c $(LIB_DIR)/sock_msg.h
BIN_FOLDER
@
if
[
!
-d
"
$(OBJ_DIR)
"
]
;
then
\
mkdir
obj
;
\
fi
@
$(CC)
-c
$<
-o
$(OBJ_DIR)
/
$@
BIN_FOLDER
:
@
if
[
!
-d
"
$(OUT_DIR)
"
]
;
then
\
mkdir
$(OUT_DIR)
;
\
fi
.PHONY
:
clean
clean
:
-
rm
-rf
$(OBJ_DIR)
/
*
.o
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment