51 lines
1.1 KiB
Diff
51 lines
1.1 KiB
Diff
From da27acd950124efefb237b4cce69e42b9a769fa9 Mon Sep 17 00:00:00 2001
|
|
From: Lemmy Huang <huangliming5@huawei.com>
|
|
Date: Tue, 9 Jul 2024 15:37:30 +0800
|
|
Subject: [PATCH] add .gitignore
|
|
|
|
Signed-off-by: Lemmy Huang <huangliming5@huawei.com>
|
|
---
|
|
.gitignore | 17 +++++++++++++++++
|
|
src/lstack/Makefile | 1 -
|
|
2 files changed, 17 insertions(+), 1 deletion(-)
|
|
create mode 100644 .gitignore
|
|
|
|
diff --git a/.gitignore b/.gitignore
|
|
new file mode 100644
|
|
index 0000000..ec51d25
|
|
--- /dev/null
|
|
+++ b/.gitignore
|
|
@@ -0,0 +1,17 @@
|
|
+.vscode
|
|
+
|
|
+**/*.so
|
|
+**/*.a
|
|
+**/*.o
|
|
+
|
|
+**/CMakeCache.txt
|
|
+**/CMakeFiles
|
|
+examples/Makefile
|
|
+examples/cmake_install.cmake
|
|
+examples/example
|
|
+src/ltran/Makefile
|
|
+src/ltran/cmake_install.cmake
|
|
+src/ltran/ltran.map
|
|
+src/ltran/gazellectl
|
|
+src/ltran/ltran
|
|
+
|
|
diff --git a/src/lstack/Makefile b/src/lstack/Makefile
|
|
index dd4e2c4..8a659c2 100644
|
|
--- a/src/lstack/Makefile
|
|
+++ b/src/lstack/Makefile
|
|
@@ -104,7 +104,6 @@ else
|
|
endif
|
|
|
|
DEP_LIBS = $(LWIP_LIB) $(LIBRTE_LIB)
|
|
-$(info $(CC):$(DEP_LIBS))
|
|
|
|
SRCS = $(wildcard ./api/*.c ./core/*.c ./netif/*.c ../common/*.c)
|
|
# Linking object and library
|
|
--
|
|
2.33.0
|
|
|