X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=Makefile.am;h=9c99297ecc80f324ef5ba2d655d1ab138edd3010;hb=74138a7f93f3f66d03ddebe243f6b7db4a90b9a6;hp=a315dd726419d2e3ac9daea21c6f093720b66dff;hpb=044b6dc7d6fbc71bed82615b6afc05fa1c9947ef;p=fw%2Fstlink diff --git a/Makefile.am b/Makefile.am index a315dd7..9c99297 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,18 +2,20 @@ AUTOMAKE_OPTIONS = subdir-objects -bin_PROGRAMS = st-flash st-util +bin_PROGRAMS = st-flash st-util st-term noinst_LIBRARIES = libstlink.a st_flash_SOURCES = flash/main.c +st_term_SOURCES = src/st-term.c st_util_SOURCES = gdbserver/gdb-remote.c gdbserver/gdb-remote.h gdbserver/gdb-server.c mingw/mingw.c mingw/mingw.h CFILES = \ src/stlink-common.c \ src/stlink-usb.c \ src/stlink-sg.c \ - src/uglylogging.c + src/uglylogging.c \ + src/st-term.c HFILES = \ src/stlink-common.h \ @@ -33,5 +35,9 @@ st_flash_CPPFLAGS = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_src st_util_LDADD = libstlink.a st_util_CPPFLAGS = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw +st_term_LDADD = libstlink.a +st_term_CPPFLAGS = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw + + EXTRA_DIST = autogen.sh