The public header files are moved to a new subdirectory, to separate the definition of the public interface from the actual implementation. Using an identical directory layout as the final installation has the advantage that the example code can be build outside the project tree without any modifications to the #include statements.
42 lines
695 B
Makefile
42 lines
695 B
Makefile
libdivecomputerdir = $(includedir)/libdivecomputer
|
|
libdivecomputer_HEADERS = \
|
|
version.h \
|
|
utils.h \
|
|
buffer.h \
|
|
device.h \
|
|
parser.h \
|
|
datetime.h \
|
|
units.h \
|
|
suunto.h \
|
|
suunto_solution.h \
|
|
suunto_eon.h \
|
|
suunto_vyper.h \
|
|
suunto_vyper2.h \
|
|
suunto_d9.h \
|
|
reefnet.h \
|
|
reefnet_sensus.h \
|
|
reefnet_sensuspro.h \
|
|
reefnet_sensusultra.h \
|
|
uwatec.h \
|
|
uwatec_aladin.h \
|
|
uwatec_memomouse.h \
|
|
uwatec_smart.h \
|
|
oceanic.h \
|
|
oceanic_atom2.h \
|
|
oceanic_veo250.h \
|
|
oceanic_vtpro.h \
|
|
mares.h \
|
|
mares_nemo.h \
|
|
mares_puck.h \
|
|
mares_darwin.h \
|
|
mares_iconhd.h \
|
|
hw.h \
|
|
hw_ostc.h \
|
|
hw_frog.h \
|
|
cressi.h \
|
|
cressi_edy.h \
|
|
zeagle.h \
|
|
zeagle_n2ition3.h \
|
|
atomics.h \
|
|
atomics_cobalt.h
|