Skip to content

Commit 5922b5e

Browse files
authored
add support/*.h to flisp build dependencies. fixes #29903 (#29905)
1 parent 1be7fa5 commit 5922b5e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/flisp/Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ LIBTARGET := lib$(NAME)
1313
SRCS := flisp.c builtins.c string.c equalhash.c table.c iostream.c \
1414
julia_extensions.c
1515

16-
HEADERS := $(wildcard *.h) $(LIBUV_INC)/uv.h
16+
LLTDIR := ../support
17+
18+
HEADERS := $(wildcard *.h) $(LIBUV_INC)/uv.h $(wildcard $(LLTDIR)/*.h)
1719

1820
OBJS := $(SRCS:%.c=$(BUILDDIR)/%.o)
1921
DOBJS := $(SRCS:%.c=$(BUILDDIR)/%.dbg.obj)
20-
LLTDIR := ../support
2122
LLT_release := $(BUILDDIR)/$(LLTDIR)/libsupport.a
2223
LLT_debug := $(BUILDDIR)/$(LLTDIR)/libsupport-debug.a
2324
LIBFILES_release := $(LLT_release) $(LIBUV) $(LIBUTF8PROC)

0 commit comments

Comments
 (0)