mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
35 lines
932 B
Makefile
35 lines
932 B
Makefile
apps += Graph::App
|
|
app_headers += apps/graph/app.h
|
|
|
|
app_objs += $(addprefix apps/graph/,\
|
|
app.o\
|
|
storage_cartesian_function_store.o\
|
|
graph/banner_view.o\
|
|
graph/calculation_graph_controller.o\
|
|
graph/calculation_parameter_controller.o\
|
|
graph/curve_parameter_controller.o\
|
|
graph/extremum_graph_controller.o\
|
|
graph/graph_controller.o\
|
|
graph/graph_controller_helper.o\
|
|
graph/graph_view.o\
|
|
graph/integral_graph_controller.o\
|
|
graph/intersection_graph_controller.o\
|
|
graph/root_graph_controller.o\
|
|
graph/tangent_graph_controller.o\
|
|
list/storage_list_controller.o\
|
|
list/text_field_function_title_cell.o\
|
|
values/storage_derivative_parameter_controller.o\
|
|
values/storage_function_parameter_controller.o\
|
|
values/storage_values_controller.o\
|
|
)
|
|
|
|
i18n_files += $(addprefix apps/graph/,\
|
|
base.de.i18n\
|
|
base.en.i18n\
|
|
base.es.i18n\
|
|
base.fr.i18n\
|
|
base.pt.i18n\
|
|
)
|
|
|
|
app_images += apps/graph/graph_icon.png
|