Сделал Сортировку

This commit is contained in:
AZEN-SGG 2024-11-22 09:45:40 +03:00
parent a83a31c034
commit 0d98154944
8 changed files with 152 additions and 94 deletions

View file

@ -1,4 +1,12 @@
all:
gcc -c main.c seagwithsob.c
gcc main.o seagwithsob.o && del *.o
a.exe
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