Assignment5 Checked

This commit is contained in:
2024-02-28 20:13:45 +05:30
parent 298a4ba3ef
commit dc5620324b
14 changed files with 24 additions and 578 deletions

11
Assignment5/Makefile Normal file
View File

@@ -0,0 +1,11 @@
TARGET: bitarr.o bitsop.o bitmap.o
bitarr.o: bitarr.c
gcc -c bitarr.c -o bitarr.o
bitsop.o: bitsop.c
gcc -c bitsop.c -o bitsop.o
bitmap.o: bitmap.c
gcc -c bitmap.c -o bitmap.o
clean:
rm bitarr.o
rm bitsop.o
rm bitmap.o