https://github.com/hannorein/rebound
Revision c6fb36e93558498b54f5c335d7e7186ee198beb8 authored by Hanno Rein on 13 November 2023, 23:08:07 UTC, committed by Hanno Rein on 13 November 2023, 23:08:07 UTC
- Naming Convention
- Emscripten support
- Web server for visualization
- Minor bug fixes
1 parent 05f77f1
Raw File
Tip revision: c6fb36e93558498b54f5c335d7e7186ee198beb8 authored by Hanno Rein on 13 November 2023, 23:08:07 UTC
REBOUNDi Version 4.0.0
Tip revision: c6fb36e
Makefile
# This Makefile compiles the shared dynamic library librebound.so
include src/Makefile.defs

librebound: 
	$(MAKE) -C src 
	@$(LINKORCOPYLIBREBOUNDMAIN)
	@echo "To compile the example problems, go to a subdirectory of examples/ and execute make there."

.PHONY: pythoncopy
pythoncopy:
	-cp librebound.so `python -c "import rebound; print(rebound.__libpath__)"`
	
all: librebound pythoncopy

clean:
	$(MAKE) -C src clean
back to top