aboutgitcodebugslistschat
path: root/Makefile
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2022-09-24 09:53:15 +0200
committerStefano Brivio <sbrivio@redhat.com>2022-10-14 17:38:25 +0200
commitda152331cf2e8537bc3651e10eb8b72d751721c3 (patch)
treecc711aa97591a58197b2357350d0dc53a9858847 /Makefile
parentc4101334e1a88e1f63c38982b49fba221ff4ab31 (diff)
downloadpasst-da152331cf2e8537bc3651e10eb8b72d751721c3.tar
passt-da152331cf2e8537bc3651e10eb8b72d751721c3.tar.gz
passt-da152331cf2e8537bc3651e10eb8b72d751721c3.tar.bz2
passt-da152331cf2e8537bc3651e10eb8b72d751721c3.tar.lz
passt-da152331cf2e8537bc3651e10eb8b72d751721c3.tar.xz
passt-da152331cf2e8537bc3651e10eb8b72d751721c3.tar.zst
passt-da152331cf2e8537bc3651e10eb8b72d751721c3.zip
Move logging functions to a new file, log.c
Logging to file is going to add some further complexity that we don't want to squeeze into util.c. Signed-off-by: Stefano Brivio <sbrivio@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d4b623f..74bbfeb 100644
--- a/Makefile
+++ b/Makefile
@@ -33,8 +33,8 @@ FLAGS += -DRLIMIT_STACK_VAL=$(RLIMIT_STACK_VAL)
FLAGS += -DARCH=\"$(TARGET_ARCH)\"
PASST_SRCS = arch.c arp.c checksum.c conf.c dhcp.c dhcpv6.c icmp.c igmp.c \
- isolation.c lineread.c mld.c ndp.c netlink.c packet.c passt.c pasta.c \
- pcap.c siphash.c tap.c tcp.c tcp_splice.c udp.c util.c
+ isolation.c lineread.c log.c mld.c ndp.c netlink.c packet.c passt.c \
+ pasta.c pcap.c siphash.c tap.c tcp.c tcp_splice.c udp.c util.c
QRAP_SRCS = qrap.c
SRCS = $(PASST_SRCS) $(QRAP_SRCS)