-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile.am
31 lines (21 loc) · 940 Bytes
/
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
################################################################
# pkg-config
################################################################
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = ggl.pc
################################################################
include $(top_srcdir)/aminclude.am
doc: doxygen-doc
if DX_COND_html
cp -f $(top_srcdir)/misc/logo/GGL-logo-100x100.png $(top_builddir)/$(DX_DOCDIR)/html/.
endif
# directory that contains all tests
TSTDIR = tests
tests: all
@$(PRINTF) "-------------------------------------------------------------------------------\n"
@$(PRINTF) " Running the tests :\n"
@$(PRINTF) "-------------------------------------------------------------------------------\n"
@make tests -s -C $(TSTDIR)
@$(PRINTF) "-------------------------------------------------------------------------------\n"
test: tests
SUBDIRS = src misc data perl $(TSTDIR)