mirror of
https://github.com/shakemid/pcsensor-temper.git
synced 2025-01-21 09:08:17 +01:00
12 lines
211 B
Makefile
12 lines
211 B
Makefile
all: pcsensor
|
|
|
|
CFLAGS = -O2 -Wall
|
|
|
|
pcsensor: pcsensor.c
|
|
${CC} -DUNIT_TEST -o $@ $^ -lusb
|
|
|
|
clean:
|
|
rm -f pcsensor *.o
|
|
|
|
rules-install: # must be superuser to do this
|
|
cp 99-tempsensor.rules /etc/udev/rules.d
|