Fix build issues with MinGW
[fw/stlink] / Makefile.am
1 # Makefile.am -- Process this file with automake to produce Makefile.in
2
3 SUBDIRS = . $(MAYBE_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 = flash/main.c
16 st_term_SOURCES = src/st-term.c
17 st_info_SOURCES = src/st-info.c
18 st_util_SOURCES = gdbserver/gdb-remote.c gdbserver/gdb-remote.h gdbserver/gdb-server.c mingw/mingw.c mingw/mingw.h
19
20 CFILES = \
21         src/stlink-common.c \
22         src/stlink-usb.c \
23         src/stlink-sg.c \
24         src/uglylogging.c \
25         src/st-info.c
26
27 if !MINGW
28 CFILES += src/st-term.c
29 endif
30
31 HFILES  = \
32         src/stlink-common.h \
33         src/stlink-usb.h \
34         src/stlink-sg.h \
35         src/uglylogging.h \
36         src/mmap.h
37
38 libstlink_a_SOURCES     =       $(CFILES) $(HFILES)
39
40 libstlink_a_CPPFLAGS    = -std=gnu99 -Wall -Wextra -O2
41 libstlink_a_LIBADD = $(LIBOBJS)
42
43 st_flash_LDADD  =       libstlink.a
44 st_flash_CPPFLAGS       = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
45
46 st_util_LDADD   =       libstlink.a
47 st_util_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
48
49 st_term_LDADD   =       libstlink.a
50 st_term_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
51
52 st_info_LDADD   =       libstlink.a
53 st_info_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
54
55
56 EXTRA_DIST = autogen.sh
57