The new output interface provides the necessary infrastructure to add support for multiple output formats. Due to the abstract interface, each new format will require only minimal changes in the application itself.
25 lines
417 B
Makefile
25 lines
417 B
Makefile
AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
|
|
LDADD = $(top_builddir)/src/libdivecomputer.la
|
|
|
|
bin_PROGRAMS = \
|
|
dctool
|
|
|
|
dctool_SOURCES = \
|
|
common.h \
|
|
common.c \
|
|
dctool.h \
|
|
dctool.c \
|
|
dctool_help.c \
|
|
dctool_version.c \
|
|
dctool_list.c \
|
|
dctool_download.c \
|
|
dctool_dump.c \
|
|
dctool_read.c \
|
|
dctool_write.c \
|
|
dctool_fwupdate.c \
|
|
output.h \
|
|
output-private.h \
|
|
output.c \
|
|
utils.h \
|
|
utils.c
|