From 6081e88a4ca5e539bca7c01a50fba861bb1eb155 Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Thu, 26 Dec 2013 11:39:26 -0700 Subject: [PATCH] s/LDFLAGS/LDLIBS/ --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 5e9cfb5..967ca09 100644 --- a/Makefile +++ b/Makefile @@ -5,11 +5,11 @@ CFLAGS += -g all: $(TARGETS) -hdjd: LDFLAGS += $(shell pkg-config --libs libusb-1.0) -hdjd: LDFLAGS += $(shell pkg-config --libs alsa) +hdjd: LDLIBS += $(shell pkg-config --libs libusb-1.0) +hdjd: LDLIBS += $(shell pkg-config --libs alsa) hdjd: hdjd.o usb.o alsa.o -explore: LDFLAGS += $(shell pkg-config --libs libusb-1.0) +explore: LDLIBS += $(shell pkg-config --libs libusb-1.0) explore.o: CFLAGS += $(shell pkg-config --cflags libusb-1.0) alsa.o: CFLAGS += $(shell pkg-config --cflags alsa)