Idris2/Makefile

169 lines
5.0 KiB
Makefile
Raw Normal View History

2020-05-18 15:59:07 +03:00
include config.mk
# Idris 2 executable used to bootstrap
export IDRIS2_BOOT ?= idris2
2020-05-18 15:59:07 +03:00
# Idris 2 executable we're building
NAME = idris2
2020-05-18 15:59:07 +03:00
TARGETDIR = build/exec
TARGET = ${TARGETDIR}/${NAME}
MAJOR=0
MINOR=2
PATCH=0
2020-05-20 19:14:38 +03:00
2020-05-18 15:59:07 +03:00
GIT_SHA1=
ifeq ($(shell git status >/dev/null 2>&1; echo $$?), 0)
# inside a git repo
ifneq ($(shell git describe --exact-match --tags >/dev/null 2>&1; echo $$?), 0)
# not tagged as a released version, so add sha1 of this build in between releases
GIT_SHA1 := $(shell git rev-parse --short=9 HEAD)
endif
endif
export IDRIS2_VERSION := ${MAJOR}.${MINOR}.${PATCH}
IDRIS2_SUPPORT := libidris2_support${SHLIB_SUFFIX}
2020-05-20 00:56:27 +03:00
CG ?= ${IDRIS2_CG}
2020-05-20 00:56:27 +03:00
ifneq (${CG},racket)
IDRIS2_IPKG := idris2.ipkg
else
IDRIS2_IPKG := idris2rkt.ipkg
endif
2020-05-18 15:59:07 +03:00
2020-05-20 19:14:38 +03:00
ifeq ($(OS), windows)
IDRIS2_PREFIX := $(shell cygpath -m ${PREFIX})
IDRIS2_CURDIR := $(shell cygpath -m ${CURDIR})
export IDRIS2_BOOT_PATH = "${IDRIS2_CURDIR}/libs/prelude/build/ttc;${IDRIS2_CURDIR}/libs/base/build/ttc;${IDRIS2_CURDIR}/libs/network/build/ttc"
else
IDRIS2_PREFIX := ${PREFIX}
IDRIS2_CURDIR := ${CURDIR}
export IDRIS2_BOOT_PATH = ${IDRIS2_CURDIR}/libs/prelude/build/ttc:${IDRIS2_CURDIR}/libs/base/build/ttc:${IDRIS2_CURDIR}/libs/network/build/ttc
endif
2020-05-18 15:59:07 +03:00
export SCHEME
.PHONY: all idris2-exec ${TARGET} testbin support support-clean clean distclean
2020-05-18 15:59:07 +03:00
all: support ${TARGET} testbin libs
2020-05-18 15:59:07 +03:00
idris2-exec: ${TARGET}
2020-05-18 22:24:48 +03:00
${TARGET}: src/IdrisPaths.idr
2020-05-20 00:56:27 +03:00
${IDRIS2_BOOT} --build ${IDRIS2_IPKG}
2020-05-18 15:59:07 +03:00
2020-05-18 22:24:48 +03:00
src/IdrisPaths.idr:
echo 'module IdrisPaths' > src/IdrisPaths.idr
echo 'export idrisVersion : ((Nat,Nat,Nat), String); idrisVersion = ((${MAJOR},${MINOR},${PATCH}), "${GIT_SHA1}")' >> src/IdrisPaths.idr
2020-05-20 19:14:38 +03:00
echo 'export yprefix : String; yprefix="${IDRIS2_PREFIX}"' >> src/IdrisPaths.idr
2020-05-18 22:24:48 +03:00
2020-05-18 15:59:07 +03:00
prelude:
${MAKE} -C libs/prelude IDRIS2=../../${TARGET} IDRIS2_PATH=${IDRIS2_BOOT_PATH}
base: prelude
${MAKE} -C libs/base IDRIS2=../../${TARGET} IDRIS2_PATH=${IDRIS2_BOOT_PATH}
network: prelude
${MAKE} -C libs/network IDRIS2=../../${TARGET} IDRIS2_PATH=${IDRIS2_BOOT_PATH}
contrib: prelude
${MAKE} -C libs/contrib IDRIS2=../../${TARGET} IDRIS2_PATH=${IDRIS2_BOOT_PATH}
libs : prelude base network contrib
testbin:
@${MAKE} -C tests testbin
test:
@${MAKE} -C tests only=$(only) IDRIS2=../../../${TARGET}
2020-05-18 15:59:07 +03:00
support:
@${MAKE} -C support/c
support-clean:
@${MAKE} -C support/c clean
clean-libs:
${MAKE} -C libs/prelude clean
${MAKE} -C libs/base clean
${MAKE} -C libs/network clean
${MAKE} -C libs/contrib clean
clean: clean-libs support-clean
2020-05-20 00:56:27 +03:00
-${IDRIS2_BOOT} --clean ${IDRIS2_IPKG}
$(RM) src/IdrisPaths.idr
${MAKE} -C tests clean
2020-05-19 15:50:47 +03:00
$(RM) -r build
2020-05-18 15:59:07 +03:00
install: install-idris2 install-support install-libs
install-api:
${IDRIS2_BOOT} --install idris2api.ipkg
2020-05-18 15:59:07 +03:00
install-idris2:
2020-05-20 00:56:27 +03:00
mkdir -p ${PREFIX}/bin/
2020-05-18 15:59:07 +03:00
install ${TARGET} ${PREFIX}/bin
2020-05-22 12:10:14 +03:00
ifeq ($(OS), windows)
-install ${TARGET}.cmd ${PREFIX}/bin
2020-05-22 12:10:14 +03:00
endif
2020-05-20 00:56:27 +03:00
mkdir -p ${PREFIX}/lib/
install support/c/${IDRIS2_SUPPORT} ${PREFIX}/lib
2020-05-20 00:56:27 +03:00
ifneq ($(CG),racket)
mkdir -p ${PREFIX}/bin/${NAME}_app
install ${TARGETDIR}/${NAME}_app/* ${PREFIX}/bin/${NAME}_app
endif
2020-05-18 15:59:07 +03:00
install-support: support
mkdir -p ${PREFIX}/idris2-${IDRIS2_VERSION}/support/chez
mkdir -p ${PREFIX}/idris2-${IDRIS2_VERSION}/support/racket
mkdir -p ${PREFIX}/idris2-${IDRIS2_VERSION}/support/gambit
install support/chez/* ${PREFIX}/idris2-${IDRIS2_VERSION}/support/chez
install support/racket/* ${PREFIX}/idris2-${IDRIS2_VERSION}/support/racket
install support/gambit/* ${PREFIX}/idris2-${IDRIS2_VERSION}/support/gambit
@${MAKE} -C support/c install
install-libs: libs
${MAKE} -C libs/prelude install IDRIS2=../../${TARGET} IDRIS2_PATH=${IDRIS2_BOOT_PATH}
${MAKE} -C libs/base install IDRIS2=../../${TARGET} IDRIS2_PATH=${IDRIS2_BOOT_PATH}
${MAKE} -C libs/network install IDRIS2=../../${TARGET} IDRIS2_PATH=${IDRIS2_BOOT_PATH} IDRIS2_VERSION=${IDRIS2_VERSION}
${MAKE} -C libs/contrib install IDRIS2=../../${TARGET} IDRIS2_PATH=${IDRIS2_BOOT_PATH}
.PHONY: bootstrap bootstrap-racket bootstrap-clean
2020-05-19 23:05:52 +03:00
bootstrap: support
cp support/c/${IDRIS2_SUPPORT} bootstrap/idris2_app
sed s/libidris2_support.so/${IDRIS2_SUPPORT}/g bootstrap/idris2_app/idris2.ss > bootstrap/idris2_app/idris2-boot.ss
ifeq ($(OS), darwin)
2020-05-20 19:14:38 +03:00
sed -i '' 's|__PREFIX__|${IDRIS2_CURDIR}/bootstrap|g' bootstrap/idris2_app/idris2-boot.ss
else
2020-05-20 19:14:38 +03:00
sed -i 's|__PREFIX__|${IDRIS2_CURDIR}/bootstrap|g' bootstrap/idris2_app/idris2-boot.ss
endif
2020-05-20 00:56:27 +03:00
sh ./bootstrap.sh
bootstrap-racket: support
cp support/c/${IDRIS2_SUPPORT} bootstrap/idris2_app
cp bootstrap/idris2.rkt bootstrap/idris2boot.rkt
2020-05-20 00:56:27 +03:00
ifeq ($(OS), darwin)
2020-05-20 19:14:38 +03:00
sed -i '' 's|__PREFIX__|${IDRIS2_CURDIR}/bootstrap|g' bootstrap/idris2boot.rkt
2020-05-20 00:56:27 +03:00
else
2020-05-20 19:14:38 +03:00
sed -i 's|__PREFIX__|${IDRIS2_CURDIR}/bootstrap|g' bootstrap/idris2boot.rkt
2020-05-20 00:56:27 +03:00
endif
sh ./bootstrap-rkt.sh
bootstrap-clean:
$(RM) -r bootstrap/bin bootstrap/lib bootstrap/idris2-${IDRIS2_VERSION}
$(RM) bootstrap/idris2boot* bootstrap/idris2_app/idris2-boot.* bootstrap/idris2_app/${IDRIS2_SUPPORT}
.PHONY: distclean
distclean: clean bootstrap-clean
@find . -type f -name '*.ttc' -exec rm -f {} \;
@find . -type f -name '*.ttm' -exec rm -f {} \;
@find . -type f -name '*.ibc' -exec rm -f {} \;