From 973e27b243ea7f12b6743894465c67a4a6a87eb2 Mon Sep 17 00:00:00 2001 From: Carlos Maiolino Date: Sat, 6 Sep 2025 09:26:21 +0200 Subject: Move some other code here Signed-off-by: Carlos Maiolino --- C/HF/chap7/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 C/HF/chap7/Makefile (limited to 'C/HF/chap7/Makefile') diff --git a/C/HF/chap7/Makefile b/C/HF/chap7/Makefile new file mode 100644 index 0000000..64312d5 --- /dev/null +++ b/C/HF/chap7/Makefile @@ -0,0 +1,14 @@ +ecat: ecat.o encrypt.o + cc -o ecat ecat.o encrypt.o + +ecat.o: encrypt.h ecat.c + cc -c ecat.c + +message: message.o encrypt.o + cc -o message message.o encrypt.o + +message.o: encrypt.h message.c + cc -c message.c + +encrypt.o: encrypt.h encrypt.c + cc -c encrypt.c -- cgit v1.2.3