Skip to content

Commit

Permalink
fix(makefile): include all objects (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske authored Sep 3, 2024
1 parent a9dac6b commit 787cbe5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ The scope of what is covered by the version number excludes:

## Version history

### unreleased

- Fix: include all objects in Makefile

### version 0.4.3, released 28-Aug-2024

- Chore: add compiler error on Windows if Virtual Terminal Processing is unavailable.
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ LUALIB= $(LUALIB_$(PLAT))
#------
# Objects
#
OBJS=core.$(O) compat.$(O) time.$(O) environment.$(O) random.$(O) term.$(O)
OBJS=bitflags.$(O) compat.$(O) core.$(O) environment.$(O) random.$(O) term.$(O) time.$(O) wcwidth.$(O)

#------
# Targets
Expand Down

0 comments on commit 787cbe5

Please sign in to comment.