mirror of
https://github.com/ada-dmitry/TMP_C712.git
synced 2026-09-24 01:00:19 +00:00
10 lines
103 B
Makefile
10 lines
103 B
Makefile
LIB =
|
|
|
|
default: run
|
|
|
|
build:
|
|
gcc func.h func.c main.c -o matrix_app ${LIB}
|
|
|
|
run: build
|
|
./matrix_app
|