diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-15 00:22:33 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-15 00:22:33 +0000 |
commit | 297b0833ad283e0e0a9003fe6c5eadeedc6614d5 (patch) | |
tree | 1a2583805aaec57e27f316781c20f01ef87bf273 /examples/Makefile | |
parent | d10c5b88334d860d19284032a7126dc2219f57ed (diff) |
Add examples dir, built with BUILD_EXAMPLES=1 (Makefiles, no CMake equivalent yet).
Move tools/wpa to examples/wpa, and unbreak its build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@88825 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 0000000000..e6ae4b32cb --- /dev/null +++ b/examples/Makefile @@ -0,0 +1,14 @@ +##===- examples/Makefile -----------------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../../.. + +PARALLEL_DIRS := wpa + +include $(LEVEL)/Makefile.common |