Files
Upsilon/apps/Makefile
Émilie Feral 14abf0f190 [apps] Create a class data parameter controller
Change-Id: Ic36538a618f40a7a31b0a537196d0f403598b0c9
2017-01-09 15:08:56 +01:00

53 lines
1.5 KiB
Makefile

include apps/calculation/Makefile
include apps/graph/Makefile
include apps/home/Makefile
include apps/probability/Makefile
include apps/regression/Makefile
include apps/statistics/Makefile
#include apps/picview/Makefile
app_objs += $(addprefix apps/,\
apps_container.o\
constant.o\
banner_view.o\
cursor_view.o\
curve_view.o\
curve_view_with_banner.o\
curve_view_with_banner_and_cursor.o\
curve_view_with_banner_and_cursor_controller.o\
curve_view_window.o\
curve_view_window_with_cursor.o\
data.o\
data_controller.o\
data_parameter_controller.o\
editable_cell_table_view_controller.o\
expression_text_field_delegate.o\
float_parameter_controller.o\
main.o\
node.o\
node_list_view_controller.o\
node_navigation_controller.o\
text_field_delegate_app.o\
toolbox_controller.o\
toolbox_leaf_cell.o\
toolbox_node.o\
variable_box_controller.o\
variable_box_leaf_cell.o\
window_parameter_controller.o\
zoom_parameter_controller.o\
)
# Tracking which source file uses which image is painful. But we need to ensure
# that a .png file has been inlined before building any source file that uses
# said image (because it will expect the ".h" file to be there).
# As a shortcut, we simply say that every app file depends on every image. In
# practice, this forces all the images to be before the app.
app_image_objs := $(app_images:.png=.o)
.SECONDARY: $(app_images:.png=.cpp)
$(app_objs): $(app_image_objs)
app.$(EXE): $(app_objs) $(app_image_objs)
products += app.$(EXE) $(app_objs) $(call INLINER_PRODUCTS,$(app_images))