Makefile.am
author deba
Wed, 08 Sep 2004 12:06:45 +0000
changeset 822 88226d9fe821
parent 712 6f1abe741fb6
child 913 f2acaefc721c
permissions -rw-r--r--
The MapFactories have been removed from the code because
if we use macros then they increases only the complexity.

The pair iterators of the maps are separeted from the maps.

Some macros and comments has been changed.
     1 SUBDIRS = src doc
     2 
     3 MRPROPERFILES =								\
     4 	aclocal.m4							\
     5 	configure							\
     6 	Makefile.in							\
     7 	config/depcomp							\
     8 	config/install-sh						\
     9 	config/missing							\
    10 	config/mkinstalldirs						\
    11 	doc/Makefile.in							\
    12 	doc/doxygen.log							\
    13 	src/Makefile.in							\
    14 	src/hugo/Makefile.in						\
    15 	src/test/Makefile.in                                            \
    16 	src/benchmark
    17 
    18 docs:
    19 	@cd doc \
    20 	&& $(MAKE) $(AM_MAKEFLAGS) clean \
    21 	&& $(MAKE) $(AM_MAKEFLAGS) html
    22 
    23 benchmark:
    24 	@cd src/benchmark \
    25 	&& $(MAKE) $(AM_MAKEFLAGS)
    26 
    27 mrproper:
    28 	$(MAKE) $(AM_MAKEFLAGS) maintainer-clean
    29 	-rm -f $(MRPROPERFILES)
    30 
    31 .PHONY: docs benchmark mrproper