Skip to content
Snippets Groups Projects
Commit 77ccc2c0 authored by Alexis Durgnat's avatar Alexis Durgnat :milky_way:
Browse files

Remove root makefile from gitignore

parent 17b4f932
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
Makefile
*/Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
......
Makefile 0 → 100644
PYBIND_CMAKE=`pip show pybind11 | grep Location: | cut -d" " -f2`/pybind11/share/cmake/pybind11
default: build
build: sandbox_wrapper.so
python3 -m build
sandbox_wrapper.so: sandbox_wrapper.cpp
cd build && make && cp -f *.so ../src/ar_sandbox/wrapper/
sandbox_wrapper.cpp:
cd build && cmake .. -DPYTHON_EXECUTABLE=/usr/bin/python3 -Dpybind11_DIR=${PYBIND_CMAKE}
clean: clean-cpp clean-pydist clean-pysrc
clean-pysrc:
rm -rf ./src/*.egg-info ./src/ar_sandbox/*.so
clean-pydist:
rm -f ./dist/*
clean-cpp:
cd build && make clean
rm -rf ./build/*
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment