The universal application works well, but is quite difficult to extend with more functionality. Therefore a new and more modular application is needed. The new dctool application will support multiple sub-commands, to carry out specific actions. Extending the application will be as easy as adding new commands.
12 lines
201 B
Makefile
12 lines
201 B
Makefile
AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include
|
|
LDADD = $(top_builddir)/src/libdivecomputer.la
|
|
|
|
bin_PROGRAMS = \
|
|
dctool
|
|
|
|
dctool_SOURCES = \
|
|
dctool.h \
|
|
dctool.c \
|
|
utils.h \
|
|
utils.c
|