diff options
author | Pascal Stumpf <pascal@cvs.openbsd.org> | 2016-09-05 10:56:51 +0000 |
---|---|---|
committer | Pascal Stumpf <pascal@cvs.openbsd.org> | 2016-09-05 10:56:51 +0000 |
commit | 6f21278d355d1e07210d0f880d6add03b9a8f160 (patch) | |
tree | e21e5e1d0abc2575321be9402a9b1fdb7942389c /gnu/usr.bin/clang/libclangRewrite | |
parent | 36dba4aba143bc3fa88bf954dab1795bb6d0073a (diff) |
LLVM/Clang build system. This only builds the bare minimum of what is needed
to get a working "clang" binary.
Note that you need GCC from ports to bootstrap clang.
looks good to patrick@, ok jsg@ kettenis@
Diffstat (limited to 'gnu/usr.bin/clang/libclangRewrite')
-rw-r--r-- | gnu/usr.bin/clang/libclangRewrite/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/usr.bin/clang/libclangRewrite/Makefile b/gnu/usr.bin/clang/libclangRewrite/Makefile new file mode 100644 index 00000000000..19fef70356e --- /dev/null +++ b/gnu/usr.bin/clang/libclangRewrite/Makefile @@ -0,0 +1,21 @@ +# $OpenBSD: Makefile,v 1.1 2016/09/05 10:56:50 pascal Exp $ + +LIB= clangRewrite +NOPIC= +NOPROFILE= + +CPPFLAGS+= ${CLANG_INCLUDES} + +.include <bsd.own.mk> +SRCS= DeltaTree.cpp \ + HTMLRewrite.cpp \ + RewriteRope.cpp \ + Rewriter.cpp \ + TokenRewriter.cpp + +.PATH: ${.CURDIR}/../../../llvm/tools/clang/lib/Rewrite + +install: + # Nothing here so far ... + +.include <bsd.lib.mk> |