From 86c6b34bd375e04937f8a1ce6878fbd180bfd7d3 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin (Intel)" Date: Mon, 6 Jul 2026 14:09:02 -0700 Subject: [PATCH] Rename travis.mk[.in] -> travis.mak[.in] Rename travis.mk to .mak to match the convention for all other Makefiles in the tree (that aren't simply named "Makefile".) Signed-off-by: H. Peter Anvin (Intel) --- .gitignore | 1 + Makefile.in | 6 +++--- configure.ac | 2 +- travis.mk.in => travis.mak.in | 0 4 files changed, 5 insertions(+), 4 deletions(-) rename travis.mk.in => travis.mak.in (100%) diff --git a/.gitignore b/.gitignore index edc86da57..5a4e3ec9d 100644 --- a/.gitignore +++ b/.gitignore @@ -101,6 +101,7 @@ TAGS /test/ffmpegtest /test/x264test /travis.mk +/travis.mak /version.h /version.mac /version.mak diff --git a/Makefile.in b/Makefile.in index 3f236786b..c3942e307 100644 --- a/Makefile.in +++ b/Makefile.in @@ -566,13 +566,13 @@ splint: # Travis tests # travis test: $(PROGS) - $(MAKE) -f travis.mk all + $(MAKE) -f travis.mak all clean-travis travis-clean: - $(MAKE) -f travis.mk clean + $(MAKE) -f travis.mak clean update-travis travis-update golden: - $(MAKE) -f travis.mk update + $(MAKE) -f travis.mak update # # Rules to run autogen if necessary diff --git a/configure.ac b/configure.ac index 560d83657..f84a2363c 100644 --- a/configure.ac +++ b/configure.ac @@ -371,5 +371,5 @@ dnl PA_CHECK_BAD_STDC_INLINE PA_C_TYPEOF -AC_CONFIG_FILES([Makefile doc/Makefile misc/Makefile test/Makefile travis.mk]) +AC_CONFIG_FILES([Makefile doc/Makefile misc/Makefile test/Makefile travis.mak]) AC_OUTPUT diff --git a/travis.mk.in b/travis.mak.in similarity index 100% rename from travis.mk.in rename to travis.mak.in