gethla/Makefile

6 lines
160 B
Makefile
Raw Permalink Normal View History

2020-04-03 03:05:53 -07:00
INCLUDES = $(shell pkg-config --cflags libusb-1.0)
LDFLAGS = $(shell pkg-config --libs libusb-1.0)
gethla: gethla.c
$(CC) $(INCLUDES) $(LDFLAGS) -o$@ $<