63 lines
1.2 KiB
Makefile
63 lines
1.2 KiB
Makefile
#
|
|
# Public header files.
|
|
#
|
|
|
|
libdivecomputerdir = $(includedir)/libdivecomputer
|
|
libdivecomputer_HEADERS = \
|
|
utils.h \
|
|
suunto.h \
|
|
suunto_eon.h \
|
|
suunto_vyper.h \
|
|
suunto_vyper2.h \
|
|
suunto_d9.h \
|
|
reefnet.h \
|
|
reefnet_sensuspro.h \
|
|
reefnet_sensusultra.h \
|
|
uwatec.h \
|
|
uwatec_aladin.h \
|
|
uwatec_memomouse.h \
|
|
uwatec_smart.h \
|
|
oceanic.h \
|
|
oceanic_atom2.h
|
|
|
|
#
|
|
# Source files.
|
|
#
|
|
|
|
lib_LTLIBRARIES = libdivecomputer.la
|
|
|
|
libdivecomputer_la_LDFLAGS = -no-undefined
|
|
|
|
libdivecomputer_la_SOURCES = \
|
|
suunto.h \
|
|
suunto_common.h suunto_common.c \
|
|
suunto_eon.h suunto_eon.c \
|
|
suunto_vyper.h suunto_vyper.c \
|
|
suunto_vyper2.h suunto_vyper2.c \
|
|
suunto_d9.h suunto_d9.c \
|
|
reefnet.h \
|
|
reefnet_sensuspro.h reefnet_sensuspro.c \
|
|
reefnet_sensusultra.h reefnet_sensusultra.c \
|
|
uwatec.h \
|
|
uwatec_aladin.h uwatec_aladin.c \
|
|
uwatec_memomouse.h uwatec_memomouse.c \
|
|
oceanic.h \
|
|
oceanic_atom2.h oceanic_atom2.c \
|
|
ringbuffer.h ringbuffer.c \
|
|
utils.h utils.c
|
|
|
|
if OS_WIN32
|
|
libdivecomputer_la_SOURCES += serial.h serial_win32.c
|
|
else
|
|
libdivecomputer_la_SOURCES += serial.h serial_posix.c
|
|
endif
|
|
|
|
if IRDA
|
|
if IRDA_WIN32
|
|
libdivecomputer_la_LIBADD = -lws2_32
|
|
endif
|
|
libdivecomputer_la_SOURCES += \
|
|
irda.h irda.c \
|
|
uwatec_smart.h uwatec_smart.c
|
|
endif
|