|
@@ -102,19 +102,22 @@ dist_bin_SCRIPTS += \
|
|
|
|
|
|
if STARPU_HAVE_HELP2MAN
|
|
|
starpu_calibrate_bus.1: starpu_calibrate_bus$(EXEEXT)
|
|
|
- help2man --no-discard-stderr -N --output=$@ ./starpu_calibrate_bus$(EXEEXT)
|
|
|
+ help2man --no-discard-stderr -N --output=$@ $<
|
|
|
starpu_machine_display.1: starpu_machine_display$(EXEEXT)
|
|
|
- help2man --no-discard-stderr -N --output=$@ ./starpu_machine_display$(EXEEXT)
|
|
|
+ help2man --no-discard-stderr -N --output=$@ $<
|
|
|
starpu_perfmodel_display.1: starpu_perfmodel_display$(EXEEXT)
|
|
|
- help2man --no-discard-stderr -N --output=$@ ./starpu_perfmodel_display$(EXEEXT)
|
|
|
+ help2man --no-discard-stderr -N --output=$@ $<
|
|
|
starpu_perfmodel_plot.1: starpu_perfmodel_plot$(EXEEXT)
|
|
|
- help2man --no-discard-stderr -N --output=$@ ./starpu_perfmodel_plot$(EXEEXT)
|
|
|
+ help2man --no-discard-stderr -N --output=$@ $<
|
|
|
starpu_workers_activity.1: starpu_workers_activity$(EXEEXT)
|
|
|
chmod +x starpu_workers_activity$(EXEEXT)
|
|
|
- help2man --no-discard-stderr -N --output=$@ ./starpu_workers_activity$(EXEEXT)
|
|
|
+ help2man --no-discard-stderr -N --output=$@ $<
|
|
|
|
|
|
-clean-local:
|
|
|
- $(RM) starpu_calibrate_bus.1 starpu_machine_display.1 starpu_perfmodel_display.1 starpu_perfmodel_plot.1 starpu_workers_activity.1
|
|
|
+if STARPU_USE_FXT
|
|
|
+starpu_fxt_tool.1: starpu_fxt_tool$(EXEEXT)
|
|
|
+ chmod +x starpu_fxt_tool$(EXEEXT)
|
|
|
+ help2man --no-discard-stderr -N --output=$@ $<
|
|
|
+endif
|
|
|
|
|
|
dist_man1_MANS =\
|
|
|
starpu_calibrate_bus.1 \
|
|
@@ -122,6 +125,15 @@ dist_man1_MANS =\
|
|
|
starpu_perfmodel_display.1 \
|
|
|
starpu_perfmodel_plot.1 \
|
|
|
starpu_workers_activity.1
|
|
|
+
|
|
|
+if STARPU_USE_FXT
|
|
|
+dist_man1_MANS +=\
|
|
|
+ starpu_fxt_tool.1
|
|
|
+endif
|
|
|
+
|
|
|
+clean-local:
|
|
|
+ $(RM) $(dist_man1_MANS)
|
|
|
+
|
|
|
endif
|
|
|
|
|
|
showcheck:
|