Skip to content
Snippets Groups Projects
Commit 603308b6 authored by Henrik Henriksson's avatar Henrik Henriksson
Browse files

Add Makefile

parent d0948e26
No related branches found
No related tags found
No related merge requests found
build-src-dir
build
*.swp
\ No newline at end of file
Makefile 0 → 100644
.DEFAULT_GOAL := all
build-src-dir:
rsync -a llvm/ build-src-dir
rsync -a clang build-src-dir/tools
skepu-tool-src: build-src-dir
rsync -ad clang_precompiler/ build-src-dir/tools/clang/tools/skepu-tool
clean-all:
@rm -rf build-src-dir
@rm -rf build
clean:
make -C build clean
build: skepu-tool-src
mkdir build || true
cd build; cmake -G "Unix Makefiles" ../build-src-dir -DCMAKE_BUILD_TYPE=Release;
all: build
$(MAKE) -C build skepu-tool
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment