diff options
Diffstat (limited to '')
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | src/Makefile | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 048e228..edc6ba3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -28,6 +28,10 @@ The scope of what is covered by the version number excludes: | |||
28 | 28 | ||
29 | ## Version history | 29 | ## Version history |
30 | 30 | ||
31 | ### unreleased | ||
32 | |||
33 | - Fix: include all objects in Makefile | ||
34 | |||
31 | ### version 0.4.3, released 28-Aug-2024 | 35 | ### version 0.4.3, released 28-Aug-2024 |
32 | 36 | ||
33 | - Chore: add compiler error on Windows if Virtual Terminal Processing is unavailable. | 37 | - Chore: add compiler error on Windows if Virtual Terminal Processing is unavailable. |
diff --git a/src/Makefile b/src/Makefile index b4ed16f..6425a4a 100644 --- a/src/Makefile +++ b/src/Makefile | |||
@@ -217,7 +217,7 @@ LUALIB= $(LUALIB_$(PLAT)) | |||
217 | #------ | 217 | #------ |
218 | # Objects | 218 | # Objects |
219 | # | 219 | # |
220 | OBJS=core.$(O) compat.$(O) time.$(O) environment.$(O) random.$(O) term.$(O) | 220 | OBJS=bitflags.$(O) compat.$(O) core.$(O) environment.$(O) random.$(O) term.$(O) time.$(O) wcwidth.$(O) |
221 | 221 | ||
222 | #------ | 222 | #------ |
223 | # Targets | 223 | # Targets |