Edit

kc3-lang/automake/tags.am

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1995-12-09 17:36:33
    Hash : bcbf9df2
    Message : Minor bug and doc fixes

  • tags.am
  • tags: TAGS
    
    TAGS:
    	tags=;					\
    	here=`pwd`;				\
    	for subdir in $(SUBDIRS); do		\
    ## Never fail here if a subdir fails.
    	  (cd $$subdir && $(MAKE) TAGS);	\
    	  test -f $$subdir/TAGS && {		\
    	    tags="$$tags -i $$here/$$subdir/TAGS"; \
    	  }					\
    	done;					\
    ## Make sure we have something to run etags on.
    	test -z "$(ETAGS_ARGS)$(CONFIG_HEADER)$(SOURCES)$(HEADERS)$$tags" \
    	  || etags $(ETAGS_ARGS) $$tags $(CONFIG_HEADER) $(SOURCES) $(HEADERS)