X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile;h=ae3ffa2a52e2abc02974645614000ae2301f9da5;hb=34ec89cd4808d8a1704d30b92d906f0e72677cab;hp=ddc782380e8dac56fda2c7576510717bc1983f5b;hpb=4f840ed7e0dd2bf43d22054352e0d68b9d4df8c7;p=oota-llvm.git diff --git a/Makefile b/Makefile index ddc782380e8..ae3ffa2a52e 100644 --- a/Makefile +++ b/Makefile @@ -7,11 +7,11 @@ # #===------------------------------------------------------------------------===# LEVEL = . -DIRS = lib/Support utils lib tools +DIRS = lib/System lib/Support utils lib tools ifneq ($(MAKECMDGOALS),tools-only) DIRS += runtime -OPTIONAL_DIRS = projects +OPTIONAL_DIRS = examples projects endif include $(LEVEL)/Makefile.common @@ -21,7 +21,7 @@ test :: all distclean:: clean $(VERB) $(RM) -rf $(LEVEL)/Makefile.config \ - $(LEVEL)/include/Config/config.h \ + $(LEVEL)/include/llvm/Config/config.h \ $(LEVEL)/autoconf/autom4te.cache \ $(LEVEL)/config.log \ $(LEVEL)/TAGS @@ -45,8 +45,8 @@ install:: install-includes TAGS: tags -all:: tags +all:: tags: - $(ETAGS) $(ETAGSFLAGS) `find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h'` + find $(wildcard $(SourceDir)/include $(SourceDir)/lib $(SourceDir)/tools) -name '*.cpp' -o -name '*.h' | $(ETAGS) $(ETAGSFLAGS) -