Skip to content

Commit 787cbe5

Browse files
authored
fix(makefile): include all objects (#36)
1 parent a9dac6b commit 787cbe5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ The scope of what is covered by the version number excludes:
2828

2929
## Version history
3030

31+
### unreleased
32+
33+
- Fix: include all objects in Makefile
34+
3135
### version 0.4.3, released 28-Aug-2024
3236

3337
- Chore: add compiler error on Windows if Virtual Terminal Processing is unavailable.

src/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ LUALIB= $(LUALIB_$(PLAT))
217217
#------
218218
# Objects
219219
#
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)
221221

222222
#------
223223
# Targets

0 commit comments

Comments
 (0)