d87a6cd556
And minor fix: - introduce configuration file for OCaml and alpine versions - add missing `libssl1.0` in docker image - remove the split call to `install_build_deps` (not required anymore) - rename scripts
22 lines
286 B
Makefile
22 lines
286 B
Makefile
|
|
all:
|
|
${MAKE} -C src all
|
|
|
|
clean:
|
|
${MAKE} -C src clean
|
|
${MAKE} -C test clean
|
|
|
|
partial-clean:
|
|
${MAKE} -C src partial-clean
|
|
${MAKE} -C test clean
|
|
|
|
.PHONY: test
|
|
test:
|
|
${MAKE} -C test
|
|
|
|
build-deps:
|
|
@./scripts/install_build_deps.sh all
|
|
|
|
docker-image:
|
|
@./scripts/create_docker_image.sh
|