Align loader to 32-bit boundary
[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
26 if !MINGW
27 CFILES += src/st-term.c
28 endif
29
30 HFILES  = \
31         src/stlink-common.h \
32         src/stlink-usb.h \
33         src/stlink-sg.h \
34         src/uglylogging.h \
35         src/mmap.h
36
37 libstlink_a_SOURCES     =       $(CFILES) $(HFILES)
38
39 libstlink_a_CPPFLAGS    = -std=gnu99 -Wall -Wextra -O2
40 libstlink_a_LIBADD = $(LIBOBJS)
41
42 st_flash_LDADD  =       libstlink.a
43 st_flash_CPPFLAGS       = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
44
45 st_util_LDADD   =       libstlink.a
46 st_util_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
47
48 st_term_LDADD   =       libstlink.a
49 st_term_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
50
51 st_info_LDADD   =       libstlink.a
52 st_info_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
53
54 EXTRA_DIST = autogen.sh