mirror of
https://gitlab.com/manzerbredes/ina260-beaglebone-performance.git
synced 2025-04-18 11:49:50 +00:00
10 lines
72 B
Makefile
10 lines
72 B
Makefile
![]() |
|
||
|
all: read
|
||
|
|
||
|
read: read.c
|
||
|
gcc $^ -o $@
|
||
|
|
||
|
clean:
|
||
|
- rm read
|
||
|
|
||
|
.PHONY: clean
|