summaryrefslogtreecommitdiff
path: root/Makefile
blob: 87db3579de22ac02c349f894f8d2e2db1f83619c (plain)
1
2
3
4
5
6
7
8
CFLAGS=-Werror -O3 -pedantic

sensor: sensor.c
	gcc -o "$@" $(CFLAGS) -lwiringx $^

all: sensor

.PHONY: all