mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
apps += Graph::App
|
|
app_headers += apps/graph/app.h
|
|
|
|
app_objs += $(addprefix apps/graph/,\
|
|
app.o\
|
|
cartesian_function.o\
|
|
cartesian_function_store.o\
|
|
storage_cartesian_function.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/storage_curve_parameter_controller.o\
|
|
graph/storage_graph_controller.o\
|
|
graph/storage_graph_view.o\
|
|
graph/tangent_graph_controller.o\
|
|
list/list_controller.o\
|
|
list/storage_list_controller.o\
|
|
values/derivative_parameter_controller.o\
|
|
values/function_parameter_controller.o\
|
|
values/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
|