diff options
author | Mike Pall <mike> | 2011-05-12 01:35:09 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-05-12 01:35:09 +0200 |
commit | 58f38c254bcdcf1f874f2e052751f568c2866133 (patch) | |
tree | e3e7d951b8b77c934da407d44568299d9689b72a /src/Makefile | |
parent | 800349387a25b73e1c98f4dcf39a65b7559894fe (diff) | |
download | luajit-58f38c254bcdcf1f874f2e052751f568c2866133.tar.gz luajit-58f38c254bcdcf1f874f2e052751f568c2866133.tar.bz2 luajit-58f38c254bcdcf1f874f2e052751f568c2866133.zip |
Move x86/x64 parts of JIT assembler backend to extra files.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 6ac05c49..03e45d2d 100644 --- a/src/Makefile +++ b/src/Makefile | |||
@@ -482,7 +482,9 @@ depend: | |||
482 | @$(HOST_CC) $(HOST_ACFLAGS) -MM *.c | \ | 482 | @$(HOST_CC) $(HOST_ACFLAGS) -MM *.c | \ |
483 | sed -e "s| [^ ]*/dasm_\S*\.h||g" \ | 483 | sed -e "s| [^ ]*/dasm_\S*\.h||g" \ |
484 | -e "s| buildvm_\S*\.h||g" \ | 484 | -e "s| buildvm_\S*\.h||g" \ |
485 | -e "s| lj_target_\S*\.h| lj_target_*.h|g" >Makefile.dep | 485 | -e "s| lj_target_\S*\.h| lj_target_*.h|g" \ |
486 | -e "s| lj_emit_\S*\.h| lj_emit_*.h|g" \ | ||
487 | -e "s| lj_asm_\S*\.h| lj_asm_*.h|g" >Makefile.dep | ||
486 | @for file in $(ALL_HDRGEN) $(ALL_DYNGEN); do \ | 488 | @for file in $(ALL_HDRGEN) $(ALL_DYNGEN); do \ |
487 | test -s $$file || $(HOST_RM) $$file; \ | 489 | test -s $$file || $(HOST_RM) $$file; \ |
488 | done | 490 | done |