Edit

kc3-lang/libbsd/Makefile.am

Branch :

  • Show log

    Commit

  • Author : Guillem Jover
    Date : 2022-11-23 23:28:34
    Hash : 00b538ff
    Message : build: Terminate lists in variables with «# EOL» This means we can add a trailing «\» to every element, so that they can be removed without requiring modification of other lines, and can be easily sorted. Replace the old usage of $(nil) which could possibly end up with junk added if such variable is ever defined, in the environment.

  • Makefile.am
  • ## Process this file with automake to produce Makefile.in
    
    SUBDIRS = \
    	include \
    	man \
    	src \
    	test \
    	# EOL
    
    ACLOCAL_AMFLAGS = -I m4
    
    EXTRA_DIST = \
    	autogen \
    	get-version \
    	# EOL
    
    dist-hook:
    	echo $(VERSION) >$(distdir)/.dist-version
    	if [ -d .git ]; then \
    	  XDG_CONFIG_HOME= HOME= git log --stat -C >$(distdir)/ChangeLog; \
    	fi