diff options
| author | Philip Kaludercic <philipk@posteo.net> | 2021-10-05 22:17:23 +0200 |
|---|---|---|
| committer | Philip Kaludercic <philipk@posteo.net> | 2021-10-06 00:01:23 +0200 |
| commit | d77b31f2e8d51da791d4fd18b319fb579e3b1f7e (patch) | |
| tree | fd98dc99df76ea2f1bf189e4a6ba4cebf14e330e /Makefile | |
| parent | a403485275bcfaa5de411c785f48cddcc5d7b0fa (diff) | |
Reorder files to byte compile in Makefile
compat-macs.el must be compiled before the definition files, and the
definition files have to be compiled before compat.el, to avoid
loading outdated .elc files.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,14 +3,14 @@ .SUFFIXES: .el .elc EMACS = emacs -BYTEC = compat-24.2.elc \ +BYTEC = compat-macs.elc \ + compat-24.2.elc \ compat-24.3.elc \ compat-24.4.elc \ compat-25.1.elc \ compat-26.1.elc \ compat-27.1.elc \ compat-28.1.elc \ - compat-macs.elc \ compat.elc all: compile test |
