Edit

kc3-lang/automake/tags.am

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1995-11-26 05:52:14
    Hash : cb69dfb8
    Message : (TAGS): Always supply 'else' clause to 'if'

  • tags.am
  • tags: TAGS
    
    TAGS:
    	tags=;					\
    	here=`pwd`;				\
    	for subdir in $(SUBDIRS); do		\
    	  (cd $$subdir && $(MAKE) TAGS);	\
    	  if test -f $$subdir/TAGS; then	\
    	    tags="$$tags -i $$here/$$subdir/TAGS"; \
    	  else					\
    	    true;				\
    	  fi;					\
    	done;					\
    	if test -n "$(ETAGS_ARGS)$(CONFIG_HEADER)$(SOURCES)$(HEADERS)$$tags"; \
    	then					\
    	  etags $(ETAGS_ARGS) $$tags $(CONFIG_HEADER) $(SOURCES) $(HEADERS); \
    	else					\
    	  true;					\
    	fi