mirror of
https://github.com/adrcs/ip400.git
synced 2025-07-05 19:35:45 +03:00
added utils
This commit is contained in:
parent
a9a3f739b4
commit
a9b13d2c39
85 changed files with 9213 additions and 0 deletions
59
rpi/stm32flash/Makefile.am
Normal file
59
rpi/stm32flash/Makefile.am
Normal file
|
@ -0,0 +1,59 @@
|
|||
|
||||
SUBDIRS = parsers
|
||||
|
||||
bin_PROGRAMS = stm32flash
|
||||
|
||||
AUTOMAKE_OPTIONS = subdir-objects
|
||||
|
||||
|
||||
stm32flash_SOURCES = \
|
||||
compiler.h \
|
||||
dev_table.c \
|
||||
i2c.c \
|
||||
init.h \
|
||||
init.c \
|
||||
main.c \
|
||||
port.h \
|
||||
port.c \
|
||||
serial.h \
|
||||
serial_common.c \
|
||||
serial_platform.c\
|
||||
stm32.h \
|
||||
stm32.c \
|
||||
utils.h \
|
||||
utils.c
|
||||
|
||||
EXTRA_stm32flash_SOURCES = \
|
||||
serial_posix.c \
|
||||
serial_w32.c
|
||||
|
||||
EXTRA_DIST = Android.mk parsers/Android.mk \
|
||||
stm32flash.1 gpl-2.0.txt \
|
||||
protocol.txt HOWTO I2C.txt
|
||||
|
||||
# If we want to ship these handmade ones, they must have
|
||||
# been copied before running configure and make dist
|
||||
dist-hook:
|
||||
-cp Makefile.handmade $(distdir)/Makefile
|
||||
-cp parsers/Makefile.handmade $(distdir)/parsers/Makefile
|
||||
|
||||
stm32flash_LDADD = ${top_builddir}/parsers/parsers.la
|
||||
|
||||
stm32flash_CFLAGS = \
|
||||
-g3 \
|
||||
-Os \
|
||||
-Wall \
|
||||
-Wextra \
|
||||
-I$(srcdir)/parsers
|
||||
|
||||
|
||||
stm32flash_LDFLAGS = \
|
||||
-Wall \
|
||||
-g3 \
|
||||
-Wextra
|
||||
|
||||
all:
|
||||
|
||||
|
||||
.PHONY: all
|
||||
.SILENT: all
|
Loading…
Add table
Add a link
Reference in a new issue