MSUStudentWork/Sorting/9Ex/makefile
2024-11-22 09:45:40 +03:00

12 lines
203 B
Makefile

all: main.o seagwithsob.o tools.o
gcc main.o seagwithsob.o tools.o && del *.o
a.exe
main.o: main.c
gcc -c main.c
seagwithsob.o: seagwithsob.c
gcc -c seagwithsob.c
tools.o: tools.c
gcc -c tools.c