automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Automake: problem report about SUBDIRS


From: Harald Dunkel
Subject: Automake: problem report about SUBDIRS
Date: Wed, 29 Jun 2005 09:49:32 +0200
User-agent: Debian Thunderbird 1.0.2 (X11/20050602)

Hi folks,

my Makefile.am deep inside a subdirectory contained this:

        :
        SUBDIRS = unittests \
                ../generic_datainterface \
                ../generic_resource_type \
                ../generic_memorymodel \
                ../hub_backend \
                ../genesys_support \
                . \
        #       ../generic_int_type \
        #       ../multi_loader \
        #       ../ldb
        
        lib_LIBRARIES = \
        :

There was no error message. But there was no SUBDIRS
in the generated Makefile, either. The subdirs were not
built.

The problem seems to be related to the '\' in front of a
comment line.

After changing SUBDIRS to

        SUBDIRS = unittests \
                ../generic_datainterface \
                ../generic_resource_type \
                ../generic_memorymodel \
                ../hub_backend \
                ../genesys_support \
                .
        #       ../generic_int_type \
        #       ../multi_loader \
        #       ../ldb


the problem was gone.


Regards

Harri




reply via email to

[Prev in Thread] Current Thread [Next in Thread]