7494913aca2002e57d171fa06ce5ee78e0c6a3e5
[fw/stlink] / Makefile.am
1 # Makefile.am -- Process this file with automake to produce Makefile.in
2
3 SUBDIRS = . $(STLINK_HAS_GUI)
4
5 AUTOMAKE_OPTIONS = subdir-objects
6
7 if MINGW
8 bin_PROGRAMS = st-flash st-util st-info
9 else
10 bin_PROGRAMS = st-flash st-util st-term st-info
11 endif
12
13 noinst_LIBRARIES      = libstlink.a
14
15 st_flash_SOURCES = src/tools/flash.c
16 st_term_SOURCES = src/tools/term.c
17 st_info_SOURCES = src/tools/info.c
18 st_util_SOURCES = src/gdbserver/gdb-remote.c src/gdbserver/gdb-remote.h src/gdbserver/gdb-server.c src/mingw/mingw.c src/mingw/mingw.h
19
20 CFILES = \
21         src/common.c \
22         src/usb.c \
23         src/sg.c \
24         src/logging.c
25
26 if !MINGW
27 CFILES += src/tools/term.c
28 endif
29
30 HFILES  = \
31         include/stlink.h \
32         include/stlink/usb.h \
33         include/stlink/sg.h \
34         include/stlink/logging.h \
35         include/stlink/mmap.h
36
37 libstlink_a_SOURCES     =       $(CFILES) $(HFILES)
38
39 libstlink_a_LIBADD = $(LIBOBJS)
40 libstlink_a_CPPFLAGS    = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/include
41
42 st_flash_LDADD  =       libstlink.a
43 st_flash_CPPFLAGS       = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/include -I$(top_srcdir)/src/mingw
44
45 st_util_LDADD   =       libstlink.a
46 st_util_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/include -I$(top_srcdir)/src/mingw
47
48 st_term_LDADD   =       libstlink.a
49 st_term_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/include -I$(top_srcdir)/src/mingw
50
51 st_info_LDADD   =       libstlink.a
52 st_info_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/include -I$(top_srcdir)/src/mingw
53
54 EXTRA_DIST = autogen.sh