aboutgitcodebugslistschat
path: root/Makefile
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2020-07-20 16:41:49 +0200
committerStefano Brivio <sbrivio@redhat.com>2021-02-16 07:58:01 +0100
commit6709ade2bde563f31e8d28a27c473fe626216e5d (patch)
tree494189caba10a7edf151a4636073793faedd065e /Makefile
parentb439984641edaf4e781dc424d4c8a574461d3540 (diff)
downloadpasst-6709ade2bde563f31e8d28a27c473fe626216e5d.tar
passt-6709ade2bde563f31e8d28a27c473fe626216e5d.tar.gz
passt-6709ade2bde563f31e8d28a27c473fe626216e5d.tar.bz2
passt-6709ade2bde563f31e8d28a27c473fe626216e5d.tar.lz
passt-6709ade2bde563f31e8d28a27c473fe626216e5d.tar.xz
passt-6709ade2bde563f31e8d28a27c473fe626216e5d.tar.zst
passt-6709ade2bde563f31e8d28a27c473fe626216e5d.zip
merd: Rename to PASST
Plug A Simple Socket Transport. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index bec0d11..501830d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,13 @@
CFLAGS += -Wall -Wextra -pedantic
-all: merd qrap
+all: passt qrap
-merd: merd.c merd.h arp.c arp.h dhcp.c dhcp.h util.c util.h
- $(CC) $(CFLAGS) merd.c arp.c dhcp.c util.c -o merd
+passt: passt.c passt.h arp.c arp.h dhcp.c dhcp.h util.c util.h
+ $(CC) $(CFLAGS) passt.c arp.c dhcp.c util.c -o passt
-qrap: qrap.c merd.h
- $(CC) $(CFLAGS) qrap.o -o qrap
+qrap: qrap.c passt.h
+ $(CC) $(CFLAGS) qrap.c -o qrap
.PHONY: clean
clean:
- -${RM} merd qrap
+ -${RM} passt *.o qrap