Closed syclik closed 2 years ago
Please check that from a fresh clone:
make check
and it tells you that you need to run make install
.make install
and sees that it succeeds.bin/stanc --version
. This should show something like stanc3 v2.29.0-rc2 (Unix)
make check
and it should succeed. Success means that it runs without failure or non-zero exit code. You should be able to do something like echo $?
right after a call to verify that it's succeeded.
These steps work on my Mac. I am hoping it works on a Linux box as well. I have not explicitly checked on Linux. Please report back if it fails anywhere.
This PR does a few things for setting up:
Makefile
to help coordinate setup and buildmake install
.bin/stanc
and make it executablemake check
will check if these three things have been done.make clean
does nothing nowmake uninstall
will removebin/stanc
I'm sure everything here can be done better. The goal was to get something going so we can focus on the rest first. If you think there are immediate ways of improvement, please suggest them.