mirror of
https://github.com/Hizenberg469/C1-Linux_SYS_Prog-AS-.git
synced 2026-04-20 02:42:23 +03:00
12 lines
225 B
Makefile
12 lines
225 B
Makefile
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
|