12 lines
204 B
Makefile
12 lines
204 B
Makefile
all: main.o seagwithsob.o tools.o
|
|
gcc main.o seagwithsob.o tools.o && rm *.o
|
|
./a.out
|
|
|
|
main.o: main.c
|
|
gcc -c main.c
|
|
|
|
seagwithsob.o: seagwithsob.c
|
|
gcc -c seagwithsob.c
|
|
|
|
tools.o: tools.c
|
|
gcc -c tools.c
|