From c5b2cb7bfd3a59036cc3ad7088f4ca3765025f58 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Mon, 1 May 2023 11:01:58 +0530 Subject: 6.1: initial commit --- 6.1/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 6.1/Makefile (limited to '6.1/Makefile') diff --git a/6.1/Makefile b/6.1/Makefile new file mode 100644 index 0000000..eaee48d --- /dev/null +++ b/6.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