view build-aux/module.mk @ 33416:48c2df4bb207

rename some files for consistency Prefer hyphens over underscores in filenames. Use 'pl' extension for Perl scripts. * build-aux/inplace-edit.pl: Rename from build-aux/inplace_edit.pl. * build-aux/module.mk: Update. * doc/interpreter/doccheck/add-to-aspell-dict.pl: Rename from doc/interpreter/doccheck/add_to_aspell_dict. * doc/interpreter/doccheck/mk-undocumented-list.pl: Rename from doc/interpreter/doccheck/mk_undocumented_list. * doc/interpreter/graphics-properties.mk: Rename from doc/interpreter/graphics_properties.mk. * doc/interpreter/octave-logo.eps: Rename from doc/interpreter/octave_logo.eps. * doc/interpreter/octave-logo.pdf: Rename from doc/interpreter/octave_logo.pdf. * doc/interpreter/octave.texi: Update. * doc/interpreter/module.mk: Update. * etc/RELEASE-CHECKLIST.md: Rename from etc/RELEASE_CHECKLIST.md. * etc/icons/octave-branding-samples.svg: Rename from etc/icons/octave_branding_samples.svg. * etc/module.mk: Update. * scripts/profiler/html/flat-entry.html: Rename from scripts/profiler/html/flat_entry.html. * scripts/profiler/html/hierarchical-entry.htmle: Rename from scripts/profiler/html/hierarchical_entry.html. * scripts/profiler/module.mk, scripts/profiler/profexport.m: Update. * scripts/testfun/private/html-plot-demos-template.html: Rename from scripts/testfun/private/html_plot_demos_template.html. * scripts/testfun/module.mk: Update. * test/classdef-debug/test-classdef-breakpoints.tst: Rename from test/classdef-debug/test_classdef_breakpoints.tst. * scripts/testfun/private/html_compare_plot_demos.m * test/json/jsondecode.tst: Rename from test/json/jsondecode_BIST.tst. * test/classdef-debug/module.mk: Update. * test/json/jsonencode.tst: Rename from test/json/jsonencode_BIST.tst. * test/json/module.mk: Update * test/jupyter-notebook/octave-kernel.ipynb: Rename from test/jupyter-notebook/octave_kernel.ipynb. * test/jupyter-notebook/plot-magic-and-errors.ipynb: Rename from test/jupyter-notebook/plot_magic_and_errors.ipynb. * test/jupyter-notebook/jupyter-notebook.tst, test/jupyter-notebook/module.mk: Update. * test/local-functions/local-functions.tst: Rename from test/local-functions/local_functions.tst. * test/local-functions/module.mk: Update. * test/pkg/pkg/mfile-basic-test: Rename from test/pkg/mfile_basic_test. * test/pkg/mfile-minimal-test: Rename from test/pkg/mfile_minimal_test. * test/pkg/module.mk, test/pkg/pkg.tst: Update.
author John W. Eaton <jwe@octave.org>
date Tue, 16 Apr 2024 12:36:15 -0400
parents b02de57ab5bb
children
line wrap: on
line source

EXTRA_DIST += \
  %reldir%/OctJavaQry.class \
  %reldir%/OctJavaQry.java \
  %reldir%/changelog.tmpl \
  %reldir%/check-subst-vars.in.sh \
  %reldir%/find-defun-files.in.sh \
  %reldir%/find-files-with-tests.in.sh \
  %reldir%/get-source-mtime.sh \
  %reldir%/inplace-edit.pl \
  %reldir%/mk-hg-id.sh \
  %reldir%/mk-octave-config-h.sh \
  %reldir%/mk-opts.pl \
  %reldir%/mk-pkg-add.sh \
  %reldir%/move-if-change \
  %reldir%/subst-config-vals.in.sh \
  %reldir%/subst-cross-config-vals.in.sh \
  %reldir%/subst-script-vals.in.sh \
  %reldir%/update-bug-status.sh

GEN_CONFIG_SHELL += \
  %reldir%/subst-config-vals.sh \
  %reldir%/subst-cross-config-vals.sh \
  %reldir%/subst-script-vals.sh

$(GEN_CONFIG_SHELL) : %.sh : %.in.sh config.status
	$(AM_V_GEN)$(SHELL) config.status $@-tmp $@

GEN_CONFIG_INC = \
  oct-conf-post-private.h \
  oct-conf-post-public.h

$(GEN_CONFIG_INC) : %.h : %.in.h config.status
	$(AM_V_GEN)$(SHELL) config.status $@-tmp $@

### utility rules to aid development

ALL_TEST_FILES = \
  $(addprefix $(srcdir)/, $(LIBOCTAVE_TST_FILES_SRC)) \
  $(addprefix $(srcdir)/, $(LIBINTERP_TST_FILES_SRC)) \
  $(addprefix $(srcdir)/, $(FCN_FILES_WITH_TESTS)) \
  $(addprefix $(srcdir)/, $(TEST_FILES))

## Tag bug IDs in tests as fixed
update-bug-status:
	$(SHELL) $(srcdir)/%reldir%/update-bug-status.sh $(ALL_TEST_FILES)
.PHONY: update-bug-status