diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2024-09-03 14:11:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 14:11:41 +0200 |
commit | 787cbe5b5e2fda6e8f66c7f5a9e5375d9522c125 (patch) | |
tree | 17d9fd819772d79888acf90906621f03442de360 /src | |
parent | a9dac6b5f78400c1f73c165a5f061a01a595bdbf (diff) | |
download | luasystem-787cbe5b5e2fda6e8f66c7f5a9e5375d9522c125.tar.gz luasystem-787cbe5b5e2fda6e8f66c7f5a9e5375d9522c125.tar.bz2 luasystem-787cbe5b5e2fda6e8f66c7f5a9e5375d9522c125.zip |
fix(makefile): include all objects (#36)
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |