Edit

IABSD.fr/xenocara/lib/libX11/Makefile.am

Branch :

  • Show log

    Commit

  • Author : matthieu
    Date : 2007-09-30 10:11:57
    Hash : a72daf0a
    Message : libX11 1.1.3

  • lib/libX11/Makefile.am
  • if XLIB_LOADABLE_I18N
    ORDER=src modules
    else
    ORDER=modules src
    endif
    SUBDIRS=include $(ORDER) nls man
    
    pkgconfigdir = $(libdir)/pkgconfig
    pkgconfig_DATA = x11.pc
    if XCB
    pkgconfig_DATA += x11-xcb.pc
    endif
    
    EXTRA_DIST=x11.pc.in x11-xcb.pc.in ChangeLog autogen.sh
    
    MAINTAINERCLEANFILES=ChangeLog
    
    .PHONY: ChangeLog
    
    ChangeLog:
    	(GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)
    
    dist-hook: ChangeLog
    
    if LINT
    # Check source code with tools like lint & sparse
    LINT_SUBDIRS=src # modules
    
    lint:
    	@for subdir in $(LINT_SUBDIRS) ; do \
    		echo "Making $@ in $$subdir"; \
    		(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) lint) ; \
    	done
    endif LINT