Moved small examples from /projects/SmallExamples to /examples.
Made the "ModuleMaker" into an example since its just one source file.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16003 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/examples/Makefile b/examples/Makefile
index c94b701..a2b38821 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -6,10 +6,11 @@
 # the University of Illinois Open Source License. See LICENSE.TXT for details.
 # 
 ##===----------------------------------------------------------------------===##
-LEVEL=../..
+LEVEL=..
 
 include $(LEVEL)/Makefile.config
 
-DIRS:= $(patsubst %/Makefile,%,$(wildcard $(SourceDir)/*/Makefile))
+#PARALLEL_DIRS:= $(patsubst %/Makefile,%,$(wildcard $(SourceDir)/*/Makefile))
+PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker
 
-include $(BUILD_SRC_ROOT)/Makefile.rules
+include $(LEVEL)/Makefile.common