summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 12a66102d1f1ff4534feb295b2428beb54bd602b (plain)
1
2
3
4
5
6
7
8
9
10
11
12

CC	?= gcc
CFLAGS	?= -Os
CFLAGS	+= -Wall

TARGETS	:= usb-print-caps

all: $(TARGETS)

clean:
	rm -f $(TARGETS)
	rm -f *~