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