From 16c2c412f3062924ad7869068730b2c56afbcff8 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Mon, 1 May 2023 22:12:45 +0530 Subject: 6.1.1: 6.1 but with pointers instead of array indices --- 6.1.1/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 6.1.1/Makefile (limited to '6.1.1/Makefile') diff --git a/6.1.1/Makefile b/6.1.1/Makefile new file mode 100644 index 0000000..eaee48d --- /dev/null +++ b/6.1.1/Makefile @@ -0,0 +1,11 @@ +objects = main.o getch.o word.o key.o + +keys : $(objects) + cc -o keys $(objects) + +main.o : word.h key.h +word.o : getch.h + +.PHONY : clean +clean : + rm keys $(objects) -- cgit v1.2.3