diff options
author | Lihui Wen <lwen@codeaurora.org> | 2018-08-03 20:03:24 +0800 |
---|---|---|
committer | Yunyun Cao <yunyunc@codeaurora.org> | 2018-09-19 18:30:06 +0800 |
commit | e63a80bf74be42f55a8e59e81fa431f898fc9bc2 (patch) | |
tree | 95d2f299af96524f9e707263f8832139268a64f3 /libdebug | |
parent | 535b1aa918b6c26cb1e6a0ea2e921c4d9282826a (diff) |
sdm: Add basic makefiles
CRs-Fixed: 2300468
Change-Id: I7cc208e50294e859fded785f61aa7f2d6bdbc4c4
Diffstat (limited to 'libdebug')
-rw-r--r-- | libdebug/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libdebug/Makefile.am b/libdebug/Makefile.am new file mode 100644 index 00000000..41a44458 --- /dev/null +++ b/libdebug/Makefile.am @@ -0,0 +1,14 @@ +h_sources = debug_handler.h + +cpp_sources = debug_handler.cpp + +library_includedir = $(includedir) +library_include_HEADERS = $(h_sources) + +lib_LTLIBRARIES = libdisplaydebug.la +libdisplaydebug_la_CC = @CC@ +libdisplaydebug_la_SOURCES = $(cpp_sources) +libdisplaydebug_la_CFLAGS = $(COMMON_CFLAGS) -DLOG_TAG=\"SDM\" +libdisplaydebug_la_CPPFLAGS = $(AM_CPPFLAGS) +libdisplaydebug_la_LIBADD = -ldl +libdisplaydebug_la_LDFLAGS = -shared -avoid-version |