X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=Makefile.am;h=2ddbf475dc89ea77bab6147ee6577fb037a7165b;hb=5851dee3cd95d7b0276caa22b9d2992c8b1147fa;hp=9c99297ecc80f324ef5ba2d655d1ab138edd3010;hpb=3e0acd0540efed27442756cb607a457524106977;p=fw%2Fstlink diff --git a/Makefile.am b/Makefile.am index 9c99297..2ddbf47 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,13 +1,20 @@ # Makefile.am -- Process this file with automake to produce Makefile.in +SUBDIRS = . $(MAYBE_GUI) + AUTOMAKE_OPTIONS = subdir-objects -bin_PROGRAMS = st-flash st-util st-term +if MINGW +bin_PROGRAMS = st-flash st-util st-info +else +bin_PROGRAMS = st-flash st-util st-term st-info +endif noinst_LIBRARIES = libstlink.a st_flash_SOURCES = flash/main.c st_term_SOURCES = src/st-term.c +st_info_SOURCES = src/st-info.c st_util_SOURCES = gdbserver/gdb-remote.c gdbserver/gdb-remote.h gdbserver/gdb-server.c mingw/mingw.c mingw/mingw.h CFILES = \ @@ -15,7 +22,11 @@ CFILES = \ src/stlink-usb.c \ src/stlink-sg.c \ src/uglylogging.c \ - src/st-term.c + src/st-info.c + +if !MINGW +CFILES += src/st-term.c +endif HFILES = \ src/stlink-common.h \ @@ -38,6 +49,9 @@ st_util_CPPFLAGS = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcd st_term_LDADD = libstlink.a st_term_CPPFLAGS = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw +st_info_LDADD = libstlink.a +st_info_CPPFLAGS = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw + EXTRA_DIST = autogen.sh