comparison Makefile @ 26630:f03109452eba

Make the checkheaders target work non-recursively.
author diego
date Sat, 03 May 2008 15:57:54 +0000
parents 5b89b42f6d50
children b372d0e6d10f
comparison
equal deleted inserted replaced
26629:2a36c68d4c12 26630:f03109452eba
890 rm -f $@; ( find -name '*.[chS]' -print ) | xargs etags -a 890 rm -f $@; ( find -name '*.[chS]' -print ) | xargs etags -a
891 891
892 tags: 892 tags:
893 rm -f $@; ( find -name '*.[chS]' -print ) | xargs ctags -a 893 rm -f $@; ( find -name '*.[chS]' -print ) | xargs ctags -a
894 894
895 ALLHEADERS = $(wildcard *.h) 895 ALLHEADERS = $(foreach dir,$(DIRS),$(wildcard $(dir)/*.h))
896 checkheaders: $(ALLHEADERS:.h=.ho) 896 checkheaders: $(ALLHEADERS:.h=.ho)
897 897
898 # ./configure must be rerun if it changed 898 # ./configure must be rerun if it changed
899 config.mak: configure 899 config.mak: configure
900 @echo "############################################################" 900 @echo "############################################################"