Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
U
udpdk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ywj
udpdk
Commits
c06db011
Commit
c06db011
authored
Nov 12, 2020
by
Leonardo Lai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more makefiles
parent
dcd85bd8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
0 deletions
+51
-0
Makefile
Makefile
+29
-0
apps/Makefile
apps/Makefile
+20
-0
udpdk/Makefile
udpdk/Makefile
+2
-0
No files found.
Makefile
0 → 100644
View file @
c06db011
#
# Created by leoll2 on 11/12/20.
# Copyright (c) 2020 Leonardo Lai. All rights reserved.
#
all
:
@
echo
"Please specify a target"
.PHONY
:
udpdk
udpdk
:
$(MAKE)
-C
udpdk
.PHONY
:
apps
apps
:
$(MAKE)
-C
apps
.PHONY
:
clean
clean
:
$(MAKE)
-C
apps clean
$(MAKE)
-C
udpdk clean
.PHONY
:
install
install
:
$(MAKE)
-C
udpdk
install
.PHONY
:
uninstall
uninstall
:
$(MAKE)
-C
udpdk uninstall
apps/Makefile
0 → 100644
View file @
c06db011
#
# Created by leoll2 on 11/12/20.
# Copyright (c) 2020 Leonardo Lai. All rights reserved.
#
all
:
pktgen pingpong
.PHONY
:
pktgen
pktgen
:
$(MAKE)
-C
pktgen
.PHONY
:
pingpong
pingpong
:
$(MAKE)
-C
pingpong
.PHONY
:
clean
clean
:
$(MAKE)
-C
pktgen clean
$(MAKE)
-C
pingpong clean
udpdk/Makefile
View file @
c06db011
...
...
@@ -86,6 +86,7 @@ clean:
rm
-f
libudpdk.a
rm
-f
${OBJS}
${PROGRAM}
.PHONY
:
install
install
:
rm
-f
${PREFIX_LIB}
/libudpdk.a.
${UDPDK_VERSION}
rm
-f
${PREFIX_LIB}
/libudpdk.a
...
...
@@ -99,6 +100,7 @@ install:
cp
-f
list/udpdk_*.h
${PREFIX_INCLUDE}/
cp
-f
shmalloc/udpdk_*.h
${PREFIX_INCLUDE}/
.PHONY
:
uninstall
uninstall
:
rm
-f
${PREFIX_LIB}
/libudpdk.a.
${UDPDK_VERSION}
rm
-f
${PREFIX_LIB}
/libudpdk.a
...
...
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