diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -46,11 +46,13 @@ EXTRA_OBJS-y := OBJS := txr.o lex.yy.o y.tab.o match.o lib.o regex.o gc.o unwind.o stream.o OBJS += arith.o hash.o utf8.o filter.o eval.o parser.o rand.o combi.o sysif.o +OBJS += lisplib.o OBJS-$(debug_support) += debug.o OBJS-$(have_syslog) += syslog.o OBJS-$(have_glob) += glob.o OBJS-$(have_posix_sigs) += signal.o EXTRA_OBJS-$(add_win_res) += win/txr.res +GEN_HDRS := place.h ifneq ($(have_git),) SRCS := $(addprefix $(top_srcdir)/,\ @@ -106,6 +108,14 @@ $(call ABBREV,LINK) $(V)$(CC) $(1) $(CFLAGS) -o $@ $^ -lm endef +define LISP_TO_C_STRING +$(call ABBREV,L2C) +$(V)echo "const wchli_t *${@:.h=}_code = wli(" > $@ +$(V)sed -n -e '/^(/,$$p' $< | \ + sed -e 's/["\\]/\\&/g' -e 's/$$/\\n/' -e 's/.*/"&"/' >> $@ +$(V)echo ");" >> $@ +endef + define WINDRES $(call ABBREV,RES) $(V)mkdir -p $(dir $@) @@ -130,6 +140,9 @@ opt/%.res: win/%.rc %.res: %.rc $(call WINDRES) +%.h: %.tl + $(call LISP_TO_C_STRING) + # The following pattern rule is used for test targets built by configure %.o: %.c $(call COMPILE_C) @@ -156,6 +169,10 @@ $(PROG)-win: $(patsubst %/txr.o,%/txr-win.o,$(OPT_OBJS)) $(EXTRA_OBJS-y) $(PROG)-win-dbg: $(patsubst %/txr.o,%/txr-win.o,$(DBG_OBJS)) $(EXTRA_OBJS-y) $(call LINK_PROG,-mwindows) +$(call ADD_CONF,dbg,lisplib.o): $(GEN_HDRS) + +$(call ADD_CONF,opt,lisplib.o): $(GEN_HDRS) + VPATH := $(top_srcdir) # Newline constant @@ -226,12 +243,13 @@ distclean: rm -rf config rm -rf config.* rm -rf mpi-1.?.? + rm -rf $(GEN_HDRS) else rebuild: clean repatch $(PROG) clean: conftest.clean tests.clean rm -f $(PROG)$(EXE) $(PROG)-dbg$(EXE) y.tab.c lex.yy.c y.tab.h y.output - rm -rf opt dbg $(EXTRA_OBJS-y) + rm -rf opt dbg $(EXTRA_OBJS-y) $(GEN_HDRS) distclean: clean rm -rf $(conf_dir) |