diff options
-rw-r--r-- | llvm/examples/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/examples/Makefile b/llvm/examples/Makefile new file mode 100644 index 00000000000..c94b7017a0e --- /dev/null +++ b/llvm/examples/Makefile @@ -0,0 +1,15 @@ +##===- examples/Makefile -----------------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file was developed by the LLVM research group and is distributed under +# the University of Illinois Open Source License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## +LEVEL=../.. + +include $(LEVEL)/Makefile.config + +DIRS:= $(patsubst %/Makefile,%,$(wildcard $(SourceDir)/*/Makefile)) + +include $(BUILD_SRC_ROOT)/Makefile.rules |