Idris2-boot/Makefile

164 lines
4.8 KiB
Makefile
Raw Normal View History

##### Options which a user might set before building go here #####
export PREFIX ?= ${HOME}/.idris2
# Add any optimisation/profiling flags for C here (e.g. -O2)
export OPT=
export CC=clang # clang compiles the output much faster than gcc!
##################################################################
export MACHINE := $(shell $(CC) -dumpmachine)
2020-03-06 09:32:16 +03:00
ifneq (, $(findstring darwin, $(MACHINE)))
OS := darwin
else ifneq (, $(findstring cygwin, $(MACHINE)))
2020-03-06 09:36:43 +03:00
OS := windows
2020-03-06 09:32:16 +03:00
else ifneq (, $(findstring mingw, $(MACHINE)))
2020-03-06 09:36:43 +03:00
OS := windows
2020-03-06 09:32:16 +03:00
else ifneq (, $(findstring windows, $(MACHINE)))
2020-03-06 09:36:43 +03:00
OS := windows
else ifneq (, $(findstring bsd, $(MACHINE)))
OS := bsd
2020-03-06 09:32:16 +03:00
else
OS := linux
2020-03-06 09:32:16 +03:00
endif
export OS
ifeq ($(OS),bsd)
MAKE := gmake
else
MAKE := make
endif
export MAKE
2020-03-06 09:32:16 +03:00
2019-08-29 09:43:34 +03:00
# current Idris2 version components
MAJOR=0
2020-04-01 00:41:15 +03:00
MINOR=1
2019-08-29 09:43:34 +03:00
PATCH=0
GIT_SHA1=
VER_TAG=
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)
VER_TAG := -${GIT_SHA1}
endif
endif
export IDRIS2_VERSION := ${MAJOR}.${MINOR}.${PATCH}
2020-02-26 10:00:25 +03:00
IDRIS2_VERSION_TAG := ${IDRIS2_VERSION}${VER_TAG}
export IDRIS2_PATH = ${CURDIR}/libs/prelude/build/ttc:${CURDIR}/libs/base/build/ttc:${CURDIR}/libs/network/build/ttc
export IDRIS2_LIBS = ${CURDIR}/libs/network
export IDRIS2_DATA = ${CURDIR}/support
IDRIS_VERSION := $(shell idris --version)
VALID_IDRIS_VERSION_REGEXP = "1.3.2.*"
2019-07-10 01:45:33 +03:00
-include custom.mk
.PHONY: ttimp idris2 idris2-fromc prelude test base clean lib_clean check_version idris2c dist/idris2.c
all: idris2 libs install-support test
# test requires an Idris install! Maybe we should do a version in Idris2?
all-fromc: idris2-fromc libs
2019-07-26 10:50:54 +03:00
check_version:
@echo "Using Idris 1 version: $(IDRIS_VERSION)"
2019-07-26 17:44:27 +03:00
@if [ $(shell expr $(IDRIS_VERSION) : $(VALID_IDRIS_VERSION_REGEXP)) -eq 0 ]; then echo "Wrong idris version, expected version matching $(VALID_IDRIS_VERSION_REGEXP)"; exit 1; fi
2019-07-26 10:50:54 +03:00
idris2: dist/idris2.c idris2-fromc
# Just build the C, assuming already built from Idris source.
# Separate rule to avoid having to build the C if Idris 1 isn't available.
# (Also replaces the first line of the generated C with the proper prefix)
#
idris2-fromc:
2020-03-06 09:32:16 +03:00
ifeq ($(OS), darwin)
@sed -i '' '1 s|^.*$$|char* idris2_prefix = "${PREFIX}";|' dist/idris2.c
else
@sed -i '1 s|^.*$$|char* idris2_prefix = "${PREFIX}";|' dist/idris2.c
endif
${MAKE} -C dist
@cp dist/idris2 ./idris2
# bit of a hack here, to get the prefix into the generated C!
2020-02-26 10:00:25 +03:00
dist/idris2.c: src/YafflePaths.idr check_version
@echo "Building Idris 2 version: $(IDRIS2_VERSION_TAG)"
idris --build idris2.ipkg
@echo 'char* idris2_prefix = "${PREFIX}";' > idris2_prefix.c
@echo 'char* getIdris2_prefix() { return idris2_prefix; }' >> idris2_prefix.c
@cat idris2_prefix.c idris2.c dist/rts/idris_main.c > dist/idris2.c
@rm -f idris2.c idris2_prefix.c
2020-02-26 10:00:25 +03:00
idris2c: dist/idris2.c
${MAKE} -C dist
2020-02-26 10:00:25 +03:00
src/YafflePaths.idr:
echo 'module YafflePaths; export yversion : ((Nat,Nat,Nat), String); yversion = ((${MAJOR},${MINOR},${PATCH}), "${GIT_SHA1}")' > src/YafflePaths.idr
prelude:
${MAKE} -C libs/prelude IDRIS2=../../idris2
2019-06-15 13:54:22 +03:00
base: prelude
${MAKE} -C libs/base IDRIS2=../../idris2
2019-07-22 18:21:38 +03:00
network: prelude
${MAKE} -C libs/network IDRIS2=../../idris2
${MAKE} -C libs/network test IDRIS2=../../idris2
2019-07-22 18:21:38 +03:00
contrib: prelude
${MAKE} -C libs/contrib IDRIS2=../../idris2
libs : prelude base network contrib
clean: clean-libs
${MAKE} -C src clean
${MAKE} -C tests clean
${MAKE} -C dist clean
rm -f runtests
2020-02-26 10:00:25 +03:00
rm -f idris2 dist/idris2.c
clean-libs:
${MAKE} -C libs/prelude clean
${MAKE} -C libs/base clean
${MAKE} -C libs/network clean
${MAKE} -C libs/contrib clean
test:
idris --build tests.ipkg
@${MAKE} -C tests only=$(only)
support:
@${MAKE} -C support/c
install-all: install-exec install-support install-libs
install: all install-all
install-fromc: all-fromc install-all
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-exec:
mkdir -p ${PREFIX}/bin
mkdir -p ${PREFIX}/idris2-${IDRIS2_VERSION}/lib
install idris2 ${PREFIX}/bin
install-libs: libs
${MAKE} -C libs/prelude install IDRIS2=../../idris2
${MAKE} -C libs/base install IDRIS2=../../idris2
${MAKE} -C libs/network install IDRIS2=../../idris2 IDRIS2_VERSION=${IDRIS2_VERSION}
${MAKE} -C libs/contrib install IDRIS2=../../idris2