summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorlijia <[email protected]>2020-07-28 15:34:25 +0800
committerlijia <[email protected]>2020-07-28 15:34:25 +0800
commit03e20686671d645d0747eb5c7fd2c27220859eb5 (patch)
treecd31f0c49f32b021cb9b699f7e64daeac7afb2fb /Makefile
parent08accd17495443fbc6b9e7cd14b19cbb4091160f (diff)
排查包数、字节数不一致问题.debug-20200728
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index da90a51..5672bc4 100644
--- a/Makefile
+++ b/Makefile
@@ -20,9 +20,10 @@ INCS += -I../../include/support/
.PHONY: all clean
all: $(TARGET)
-lirenjie_vxlan_sapp.so: lirenjie_vxlan_sapp.o
- $(CC) -o $@ -shared -fPIC $(CFLAGS) $^ $(MODULES)
- cp $@ ../plug/business/lirenjie_vxlan/
+#lirenjie_vxlan_sapp.so: lirenjie_vxlan_sapp.o
+lirenjie_vxlan_sapp.so: lirenjie_vxlan_sapp_20200728.o
+ $(CC) -o $@ -shared -fPIC $(CFLAGS) $^ $(MODULES) -L/opt/MESA/lib/
+ #cp $@ ../plug/business/lirenjie_vxlan/
.c.o:
$(CC) -c -o $@ $(CFLAGS) -I. $(INCS) $<