diff options
author | Keith Packard <keithp@keithp.com> | 2012-07-20 12:04:17 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-07-20 12:04:52 -0700 |
commit | 38f66a31174dd367e39d717c527f555add60a9d4 (patch) | |
tree | c062f25ac21b37962e6558c2f41483539f9d883e /ao-tools | |
parent | e033a72d3f420e18ed24354c7dfc7e1317a03fb6 (diff) |
tools: Use pkgconfig to find stlink for ao-stmload
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools')
-rw-r--r-- | ao-tools/ao-stmload/Makefile.am | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ao-tools/ao-stmload/Makefile.am b/ao-tools/ao-stmload/Makefile.am index 77979daf..375896ea 100644 --- a/ao-tools/ao-stmload/Makefile.am +++ b/ao-tools/ao-stmload/Makefile.am @@ -2,12 +2,9 @@ bin_PROGRAMS=ao-stmload LIBSTLINKDIR=/local/src/stlink -AM_CFLAGS=-I$(LIBSTLINKDIR)/src $(LIBUSB_CFLAGS) -I../lib +AM_CFLAGS=$(LIBSTLINK_CFLAGS) $(LIBUSB_CFLAGS) -I../lib -AO_STMLOAD_LIBS=$(LIBSTLINKDIR)/libstlink.a -ao_stmload_DEPENDENCIES = $(AO_STMLOAD_LIBS) - -ao_stmload_LDADD=$(AO_STMLOAD_LIBS) $(LIBUSB_LIBS) -lelf +ao_stmload_LDADD=$(LIBSTLINK_LIBS) $(LIBUSB_LIBS) -lelf ao_stmload_SOURCES=ao-stmload.c |