X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=Makefile.am;fp=Makefile.am;h=28e11d5e59a6e1589aad4b7c4bf75b194331c75a;hb=691e9af28da2e1178353a5c016c478e508a04f19;hp=9aeec4a00f609895d748bd0a4fa063bf785ae14c;hpb=087a3596c3f22599867411fafb79fdfb3f48097c;p=fw%2Fstlink diff --git a/Makefile.am b/Makefile.am index 9aeec4a..28e11d5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,20 +1,37 @@ # Makefile.am -- Process this file with automake to produce Makefile.in + +AUTOMAKE_OPTIONS = subdir-objects + bin_PROGRAMS = st-flash st-util -noinst_LTLIBRARIES = libstlink.la +noinst_LIBRARIES = libstlink.a st_flash_SOURCES = flash/main.c st_util_SOURCES = gdbserver/gdb-remote.c gdbserver/gdb-remote.h gdbserver/gdb-server.c -libstlink_la_SOURCES = src/stlink-common.c src/stlink-usb.c src/stlink-sg.c src/uglylogging.c \ - src/stlink-common.h src/stlink-usb.h src/stlink-sg.h src/uglylogging.h +CFILES = \ + src/stlink-common.c \ + src/stlink-usb.c \ + src/stlink-sg.c \ + src/uglylogging.c + +HFILES = \ + src/stlink-common.h \ + src/stlink-usb.h \ + src/stlink-sg.h \ + src/uglylogging.h \ + src/mmap.h -libstlink_la_CPPFLAGS = -std=gnu99 -Wall -Wextra -O2 +libstlink_a_SOURCES = $(CFILES) $(HFILES) -st_flash_LDADD = libstlink.la +libstlink_a_CPPFLAGS = -std=gnu99 -Wall -Wextra -O2 +libstlink_a_LIBADD = $(LIBOBJS) + +st_flash_LDADD = libstlink.a st_flash_CPPFLAGS = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -st_util_LDADD = libstlink.la +st_util_LDADD = libstlink.a st_util_CPPFLAGS = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src EXTRA_DIST = autogen.sh +