-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.am
54 lines (41 loc) · 1.23 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
ACLOCAL_AMFLAGS = -I m4
AM_CFLAGS = -I $(top_srcdir)/common/ -I $(top_srcdir)/ela/ \
-I $(top_srcdir)/diags -I $(top_srcdir)/lpd/ \
-I /usr/include/ncurses/ -Wall -g -DDEBUG \
-DDEST_DIR='"${exec_prefix}"' -DVERSION='"@VERSION@"'
AM_CXXFLAGS = -I $(top_srcdir)/common/ -I $(top_srcdir)/ela/ \
-I $(top_srcdir)/diags -I $(top_srcdir)/lpd/ \
-I /usr/include/ncurses/ -Wall -g -DDEBUG \
-DDEST_DIR='"${exec_prefix}"' -DVERSION='"@VERSION@"'
AM_LDFLAGS =
dist_man_MANS =
sbin_PROGRAMS =
check_PROGRAMS =
noinst_PROGRAMS =
doc_DATA =
EXTRA_DIST =
DOXYGEN_CONFIG_FILE =
INSTALL_EXEC_HOOKS =
UNINSTALL_HOOKS =
AM_LOCALS =
CLEAN_LOCALS =
CHECK_LOCALS =
doc_DATA += COPYING README
SPECFILENAME = ppc64-diag.spec
DOXYGEN_CONFIG_FILE += doxygen.config
include common/Makefile.am
if WITH_LIBRTAS
include rtas_errd/Makefile.am
include lpd/Makefile.am
include diags/Makefile.am
include diags/test/Makefile.am
endif
include ela/Makefile.am
include opal-dump-parse/Makefile.am
include opal_errd/Makefile.am
include scripts/Makefile.am
EXTRA_DIST += autogen.sh $(DOXYGEN_CONFIG_FILE) $(SPECFILENAME)
install-exec-hook: $(INSTALL_EXEC_HOOKS)
uninstall-hook: $(UNINSTALL_HOOKS)
am-local: $(AM_LOCALS)
clean-local: $(CLEAN_LOCALS)