diff options
author | sinanmohd <sinan@firemail.cc> | 2023-05-01 11:01:58 +0530 |
---|---|---|
committer | sinanmohd <sinan@firemail.cc> | 2023-05-01 21:57:11 +0530 |
commit | c5b2cb7bfd3a59036cc3ad7088f4ca3765025f58 (patch) | |
tree | ec42c19c11319847559f231c04fc5e75e8aebee0 /6.1/Makefile | |
parent | 07a42d77a1c26e226fec3be7645ba37e8ceafe6e (diff) |
6.1: initial commit
Diffstat (limited to '6.1/Makefile')
-rw-r--r-- | 6.1/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
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) |