mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Pneumatics still have CAN modules. The refactored code is now eight plugins for sensors and actuators. There is some code reuse that should be refactored out, but that level of abstraction will wait until we figure out how these plugins are integrating with gazebo proper. Change-Id: I357e695ef05af6dda83a39ba60380686bd57d11a Closes: artf2610, artf2623
16 lines
299 B
Makefile
16 lines
299 B
Makefile
prefix = /usr
|
|
lib.dir = $(prefix)/lib
|
|
plugin.dir = $(lib.dir)/frcsim/plugins
|
|
build.dir = build
|
|
|
|
all:
|
|
mkdir -p $(build.dir)
|
|
cd ${build.dir} && cmake .. && make
|
|
|
|
clean:
|
|
rm -rf $(build.dir)
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(plugin.dir)
|
|
install $(build.dir)/libgz_clock.so $(DESTDIR)$(plugin.dir)
|