diff options
author | Mike Pall <mike> | 2021-06-01 05:14:18 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2021-06-01 05:14:18 +0200 |
commit | edd5cbadc5cdc7b5b66d5340ee97c5abe5a3892a (patch) | |
tree | 053c8bb18f0b9de559a4b712062fd99e96849be7 /src/Makefile.dep | |
parent | 50d6883e6027c4c2f9a5e495fee6b7fff1bd73c9 (diff) | |
download | luajit-edd5cbadc5cdc7b5b66d5340ee97c5abe5a3892a.tar.gz luajit-edd5cbadc5cdc7b5b66d5340ee97c5abe5a3892a.tar.bz2 luajit-edd5cbadc5cdc7b5b66d5340ee97c5abe5a3892a.zip |
String buffers, part 2c: abstract out string.format.
Sponsored by fmad.io.
Diffstat (limited to 'src/Makefile.dep')
-rw-r--r-- | src/Makefile.dep | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.dep b/src/Makefile.dep index 315bf632..0bf63391 100644 --- a/src/Makefile.dep +++ b/src/Makefile.dep | |||
@@ -197,7 +197,8 @@ lj_state.o: lj_state.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \ | |||
197 | lj_str.o: lj_str.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h lj_gc.h \ | 197 | lj_str.o: lj_str.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h lj_gc.h \ |
198 | lj_err.h lj_errmsg.h lj_str.h lj_char.h lj_prng.h | 198 | lj_err.h lj_errmsg.h lj_str.h lj_char.h lj_prng.h |
199 | lj_strfmt.o: lj_strfmt.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \ | 199 | lj_strfmt.o: lj_strfmt.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \ |
200 | lj_buf.h lj_gc.h lj_str.h lj_state.h lj_char.h lj_strfmt.h | 200 | lj_err.h lj_errmsg.h lj_buf.h lj_gc.h lj_str.h lj_meta.h lj_state.h \ |
201 | lj_char.h lj_strfmt.h lj_lib.h | ||
201 | lj_strfmt_num.o: lj_strfmt_num.c lj_obj.h lua.h luaconf.h lj_def.h \ | 202 | lj_strfmt_num.o: lj_strfmt_num.c lj_obj.h lua.h luaconf.h lj_def.h \ |
202 | lj_arch.h lj_buf.h lj_gc.h lj_str.h lj_strfmt.h | 203 | lj_arch.h lj_buf.h lj_gc.h lj_str.h lj_strfmt.h |
203 | lj_strscan.o: lj_strscan.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \ | 204 | lj_strscan.o: lj_strscan.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \ |