https://github.com/hannorein/rebound
Revision 62db68afc6faf34811641e64de79d13980331c31 authored by Hanno Rein on 26 January 2024, 14:18:35 UTC, committed by Hanno Rein on 26 January 2024, 14:18:35 UTC
1 parent d5a5910
Raw File
Tip revision: 62db68afc6faf34811641e64de79d13980331c31 authored by Hanno Rein on 26 January 2024, 14:18:35 UTC
Third memory leak in ODEs
Tip revision: 62db68a
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