blob: db6233fe4774d3da2f63e31dc714fc9a4e4d74d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
all: temper
CFLAGS = -O2 -Wall
temper: temper.c
${CC} -DUNIT_TEST -o $@ $^ -lusb
clean:
rm -f temper *.o
rules-install: # must be superuser to do this
cp 99-tempsensor.rules /etc/udev/rules.d
|