diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-14 21:26:54 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-14 21:26:54 +0200 |
commit | 2c25c8d802a8f1553635cd60241265c1853251cd (patch) | |
tree | 97016d623919067a0999bcf7d35623a7d6fdfcd8 /scripts/makefile | |
parent | 8848ad8a546627e1e935c46950c7a9df759b320e (diff) | |
download | posthaste-2c25c8d802a8f1553635cd60241265c1853251cd.tar.gz posthaste-2c25c8d802a8f1553635cd60241265c1853251cd.zip |
allow 32bit compilation
Diffstat (limited to 'scripts/makefile')
-rw-r--r-- | scripts/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/makefile b/scripts/makefile index 3efa6d7..e61e101 100644 --- a/scripts/makefile +++ b/scripts/makefile @@ -54,8 +54,8 @@ gen/gen_parser.c: src/parser.y gen/gen_lexer.inc gen/gen_lexer.inc: src/lexer.l flex -o gen/gen_lexer.inc src/lexer.l -posthaste: $(POSTHASTE_OBJS) deps/ejit/ejit.o - $(COMPILE_POSTHASTE) $(POSTHASTE_OBJS) deps/ejit/ejit.o -o $@ $(LINK_FLAGS) +posthaste: $(POSTHASTE_OBJS) deps/ejit/libejit.a + $(COMPILE_POSTHASTE) $(POSTHASTE_OBJS) deps/ejit/libejit.a -o $@ $(LINK_FLAGS) # might lint some common things twice .PHONY: |