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 *~