-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
72 lines (61 loc) · 1.51 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# ===============================================================
#
# Release under GPLv-3.0.
#
# @file Makefile.am
# @brief
# @author gnsyxiang <gnsyxiang@163.com>
# @date 05/03 2021 10:32
# @version v0.0.1
#
# @since note
# @note note
#
# change log:
# NO. Author Date Modified
# 00 zhenquan.qiu 05/03 2021 create the file
#
# last modified: 05/03 2021 10:32
# ===============================================================
include res/doxygen.am
SUBDIRS = \
include \
src \
doc \
example \
res \
build-script
if COMPILE_LIBCUNIT
SUBDIRS += test
endif
# ------------------
# defining variables
# ------------------
_install_files_com =
_dist_files_com =
include_com =
ldadd_com =
ACLOCAL_AMFLAGS = -I m4
include_com += $(ACLOCAL_AMFLAGS)
export include_com
export ldadd_com
# ---------------------
# add necessary content
# ---------------------
# ------------------
# make install files
# ------------------
_install_files_com += \
LICENSE \
README.md
dist_doc_DATA = $(_install_files_com)
pkgconfig_DATA = $(project_name).pc
# ---------------
# make dist files
# ---------------
_dist_files_com += \
autogen.sh \
build.sh \
$(project_name).pc.in
EXTRA_DIST = $(_dist_files_com)
DISTCLEANFILES = $(project_name).pc