Solomon Peachy
9047c29951
The libusb backend does everything, and better. Also, it can't handle the CP-10 properly.
14 lines
299 B
Makefile
14 lines
299 B
Makefile
CFLAGS = -Wall
|
|
CUPS_BACKENDS = /usr/lib/cups/backend
|
|
|
|
all: selphy_print
|
|
|
|
selphy_print: selphy_print.c selphy_print_common.h
|
|
gcc -o selphy_print selphy_print.c -lusb-1.0 $(CFLAGS)
|
|
|
|
install:
|
|
install -o root -m 700 selphy_print $(CUPS_BACKENDS)/selphy
|
|
|
|
clean:
|
|
rm -f selphy_print selphy_print_linux
|