27 lines
445 B
Makefile
27 lines
445 B
Makefile
AM_CXXFLAGS = -Wno-unused-parameter \
|
|
-Wconversion
|
|
|
|
noinst_LIBRARIES = libebus.a
|
|
|
|
libebus_a_SOURCES = result.cpp \
|
|
result.h \
|
|
symbol.cpp \
|
|
symbol.h \
|
|
filereader.h \
|
|
datatype.cpp \
|
|
datatype.h \
|
|
data.cpp \
|
|
data.h \
|
|
device.cpp \
|
|
device.h \
|
|
message.cpp \
|
|
message.h
|
|
|
|
if CONTRIB
|
|
SUBDIRS = contrib
|
|
libebus_a_LIBADD = contrib/*.o
|
|
endif
|
|
|
|
distclean-local:
|
|
-rm -f Makefile.in
|