pcsensor-temper/Makefile
hpotaraju 2f77f9925a
Reorder gcc parameters
Linker unable to resolve libusb functions because of parameter ordering. Reordering this way will help create the undefined symbols first, which will subsequently resolve when seeing libusb-1.0.a
2018-08-22 15:52:31 -07:00

18 lines
309 B
Makefile

# Makefile for pcsensor
ifndef ${CC}
CC = gcc
endif
CFLAGS = -g -O2 -Wall -lusb-1.0 -I/usr/include/libusb-1.0
all: pcsensor
pcsensor: pcsensor.c
${CC} $^ ${CFLAGS} -DUNIT_TEST -o $@
clean:
rm -f pcsensor *.o
rules-install: # must be superuser to do this
cp 99-tempsensor.rules /etc/udev/rules.d