Revision 52f5f708b220b6a006fa64d54f915beb73cb65cf authored by Olaf Hering on 17 July 2020, 10:01:16 UTC, committed by Olaf Hering on 17 July 2020, 10:01:16 UTC
String_val() will return 'const char *'.

Signed-off-by: Olaf Hering <olaf@aepfle.de>
1 parent 526acc4
Raw File
Makefile
PREFIX_ARG := $(if $(PREFIX),--prefix $(PREFIX),)
LIBDIR_ARG := $(if $(LIBDIR),--libdir $(LIBDIR),)
DESTDIR_ARG := $(if $(DESTDIR),--destdir $(DESTDIR),)
INSTALL_ARGS := $(PREFIX_ARG) $(LIBDIR_ARG) $(DESTDIR_ARG)
DUNE_ARGS =
DUNE = dune

default:
	$(DUNE) build @install $(DUNE_ARGS)

install:
	$(DUNE) install $(INSTALL_ARGS) $(DUNE_ARGS)

test:
	$(DUNE) runtest $(DUNE_ARGS)

clean:
	$(DUNE) clean

doc:
	$(DUNE) build @doc $(DUNE_ARGS)
back to top