hcl/Makefile.am

70 lines
2.1 KiB
Makefile
Raw Normal View History

2016-09-28 14:40:37 +00:00
AUTOMAKE_OPTION = foreign
ACLOCAL_AMFLAGS = -I m4
2020-11-15 09:56:06 +00:00
EXTRA_DIST = t t/test-bi.hcl
2016-09-28 14:40:37 +00:00
SUBDIRS =
if ENABLE_STATIC_MODULE
2022-02-21 15:22:22 +00:00
SUBDIRS += mod lib bin t
else
2022-02-21 15:22:22 +00:00
SUBDIRS += lib mod bin t
endif
2022-02-21 15:22:22 +00:00
DIST_SUBDIRS = $(SUBDIRS)
2016-09-28 14:40:37 +00:00
distclean-local:
@rm -rf $(top_srcdir)/autom4te.cache
2023-10-29 12:40:05 +00:00
clean-local:
rm -rf $(builddir)/go.mod $(builddir)/go.sum
if ENABLE_HCLGO
## the attempt to compose a proper procedure using a regular compiler failed.
## e.g ./configure GOC=opt/go/pkg/tool/linux_amd64/
## while go.m4 is included in autoconf 2.71, the support for the go language
## is very limited and the go language itself is pursuing the module based builder.
##
## the following is to trick autoconf/automake as if it's building go files with
## a real compiler whereas the actual building is done thru `go build`
bin_PROGRAMS = hclgo
hclgo_SOURCES = \
go/hcl.go \
go/cb.go \
go/inst.go \
main.go \
go.mod
hclgo_DEPENDENCIES = hclgo.bin
## let the linker to move hclgo.bin to the actual target
hclgo_LINK = mv -f hclgo.bin hclgo$(EXEEXT) || echo "FAILED TO LINK"
2023-10-31 16:42:47 +00:00
hclgo.bin: lib/libhcl.la
2023-10-29 12:40:05 +00:00
cp -pf $(srcdir)/go.mod $(builddir)/go.mod >/dev/null 2>&1 || true
chmod u+w $(builddir)/go.mod ## with `make distcheck`, the echo's redirection to the file fails without this permission change
sed -r -i -e "/^[[:space:]]*replace[[:space:]]+cfg[[:space:]]*=>/d" $(builddir)/go.mod
2023-10-29 12:40:05 +00:00
echo -e "\nreplace cfg => $(abs_builddir)/go/cfg" >> $(builddir)/go.mod
[ -f $(srcdir)/go.sum ] && cp -pf $(srcdir)/go.sum $(builddir)/go.sum >/dev/null 2>&1 || true
2023-10-31 16:42:47 +00:00
## ---------------------------------------------------------------
CC=$(CC) \
CGO_CFLAGS="-I$(abs_srcdir)/lib -I$(abs_builddir)/lib $(CFLAGS)" \
CGO_LDFLAGS="-L$(abs_builddir)/lib -L$(abs_builddir)/lib/.libs -lhcl -ldl -lquadmath" \
2023-10-29 12:40:05 +00:00
go build -C $(srcdir) -x -o $(abs_builddir)/hclgo.bin -modfile $(abs_builddir)/go.mod
2023-10-31 16:42:47 +00:00
## ---------------------------------------------------------------
2023-10-29 12:40:05 +00:00
go clean -C $(srcdir) -x -modfile $(abs_builddir)/go.mod
rm -rf $(builddir)/go.mod $(builddir)/go.sum
## the go to o recipe is fake to deceive make
.go.o:
echo $< > $@
.mod.o:
echo $< > $@
endif