-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
73 lines (55 loc) · 1.88 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
include mk/os.mk
MAKEFLAGS += -j
.DELETE_ON_ERROR:
.PHONY: test
HC ?= ghc
HS_SRC := $(shell find src -type f) $(shell find lib -type f) apple.cabal
ifeq ($(UNAME),Linux)
LD_VER := $(shell awk '/^[ \t]*lib-version-info:/{print $$2}' apple.cabal | sed 's/:/./g')
endif
libapple$(EXT): $(HS_SRC) include/apple.h
cabal build flib:apple -w $(HC)
ifeq ($(UNAME),Linux)
cp $$(jq '."install-plan"[]|select(."component-name"=="flib:apple")|."bin-file"' dist-newstyle/cache/plan.json -r).$(LD_VER) $@
strip $@
else
cp $$(jq '."install-plan"[]|select(."component-name"=="flib:apple")|."bin-file"' dist-newstyle/cache/plan.json -r) $@
endif
docs/index.html: doc/apple-by-example.md nb/hist.html nb/convolve.html nb/randomWalk.html
pandoc --mathjax --lua-filter=include-files.lua -s $< -o $@ --toc
nb/%.html: nb/%.ipynb
jupyter nbconvert $^ --to=html
sed -i '' '1,6d' $@
moddeps.svg: $(HS_SRC)
graphmod -i src | dot -Tsvg -o $@
install-lib: libapple$(EXT)
cp $^ /usr/local/lib
install-py:
make -C pyc install
install-r:
make -C Rc install
install:
cabal install -w $(HC)
strip $$(readlink -f $$(which atc))
strip $$(readlink -f $$(which writeo))
strip $$(readlink -f $$(which arepl))
test: libapple$(EXT)
python3 test/py/mat.py
test-pyc: install-py
python3 test/py/xor/m.py
python3 test/py/py.py
clean:
make -C pyc clean
make -C vscode clean
make -C Rc clean
make -C janet clean
rm -f nb/*.html
rm -rf dist-newstyle tags tags.mtime moddeps.svg *.hp *.o *.prof *.tix *.svg *.so *.dylib $$(fd -H '^__pycache__$$' -t d)
fmt:
fd '\.(cpphs|hs)$$' $$(ja -F'\s*:\s*' '{%/hs-source-dirs/}{`2}' -i apple.cabal) -x stylish-haskell -i
fix:
fd '\.(cpphs|hs|x|y|hsc)$$' $$(ja -F'\s*:\s*' '{%/hs-source-dirs/}{`2}' -i apple.cabal) -x ja "{%/^\s*infix(r|l)?\s+\d+/}{sprintf '- fixity: %s' \`0}}" -i | ja '~.$$0'
tags: $(HS_SRC)
rm -f tags
ghc-tags --ctags
ctags --append=yes --languages=ALEX,HAPPY -R src