Closed justbuchanan closed 8 years ago
You can now run make DESTDIR=/my/path install to place headers and the compiled library in a given output path. Running make DESTDIR=/tmp/rrt results in:
make DESTDIR=/my/path install
make DESTDIR=/tmp/rrt
$ tree /tmp/rrt /tmp/rrt ├── include │ └── rrt │ ├── 2dplane │ │ ├── 2dplane.hpp │ │ ├── GridStateSpace.hpp │ │ ├── ObstacleGrid.hpp │ │ └── PlaneStateSpace.hpp │ ├── BiRRT.hpp │ ├── StateSpace.hpp │ ├── Tree.hpp │ ├── planning │ │ └── Path.hpp │ └── util.hpp └── lib └── libRRT.a 5 directories, 10 files
You can now run
make DESTDIR=/my/path install
to place headers and the compiled library in a given output path. Runningmake DESTDIR=/tmp/rrt
results in: