Merge branch 'master' of https://github.com/yurovsky/stlink
[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 bin_PROGRAMS = st-flash st-util st-term
8
9 noinst_LIBRARIES      = libstlink.a
10
11 st_flash_SOURCES = flash/main.c
12 st_term_SOURCES = src/st-term.c
13 st_util_SOURCES = gdbserver/gdb-remote.c gdbserver/gdb-remote.h gdbserver/gdb-server.c mingw/mingw.c mingw/mingw.h
14
15 CFILES = \
16         src/stlink-common.c \
17         src/stlink-usb.c \
18         src/stlink-sg.c \
19         src/uglylogging.c \
20         src/st-term.c
21
22 HFILES  = \
23         src/stlink-common.h \
24         src/stlink-usb.h \
25         src/stlink-sg.h \
26         src/uglylogging.h \
27         src/mmap.h
28
29 libstlink_a_SOURCES     =       $(CFILES) $(HFILES)
30
31 libstlink_a_CPPFLAGS    = -std=gnu99 -Wall -Wextra -O2
32 libstlink_a_LIBADD = $(LIBOBJS)
33
34 st_flash_LDADD  =       libstlink.a
35 st_flash_CPPFLAGS       = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
36
37 st_util_LDADD   =       libstlink.a
38 st_util_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
39
40 st_term_LDADD   =       libstlink.a
41 st_term_CPPFLAGS        = -std=gnu99 -Wall -Wextra -O2 -I$(top_srcdir)/src -I$(top_srcdir)/mingw
42
43
44 EXTRA_DIST = autogen.sh
45