blob: cb9fcf4ee0e4254430afa86541a6c64f7163f242 [file] [log] [blame]
Austin Schuh48d60c12017-02-04 21:58:58 -08001genrule(
2 name = 'genrule_shooter',
Austin Schuh48d60c12017-02-04 21:58:58 -08003 cmd = '$(location //y2017/control_loops/python:shooter) $(OUTS)',
4 tools = [
5 '//y2017/control_loops/python:shooter',
6 ],
7 outs = [
8 'shooter_plant.h',
9 'shooter_plant.cc',
10 'shooter_integral_plant.h',
11 'shooter_integral_plant.cc',
12 ],
13)
14
15cc_library(
16 name = 'shooter_plants',
Brian Silverman052e69d2017-02-12 16:19:55 -080017 visibility = ['//visibility:public'],
Austin Schuh48d60c12017-02-04 21:58:58 -080018 srcs = [
19 'shooter_plant.cc',
20 'shooter_integral_plant.cc',
21 ],
22 hdrs = [
23 'shooter_plant.h',
24 'shooter_integral_plant.h',
25 ],
26 deps = [
27 '//frc971/control_loops:state_feedback_loop',
28 ],
29)