Files
TMP_C712/Practice/matrix/Makefile
T
2023-11-03 15:02:03 +03:00

10 lines
103 B
Makefile

LIB =
default: run
build:
gcc func.h func.c main.c -o matrix_app ${LIB}
run: build
./matrix_app