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