git @ Cat's Eye Technologies Tandem / 1986643
Use Cat's Eye Technologies' Standard Haskell Makefile instead. Chris Pressey 3 years ago
3 changed file(s) with 27 addition(s) and 32 deletion(s). Raw diff Collapse all Expand all
0 PROG=tandem
1
2 all: exe web
3
4 exe: bin/$(PROG).exe
5
6 bin/$(PROG).exe:
7 ifeq (, $(shell command -v ghc 2>/dev/null))
8 echo "ghc not found in PATH, skipping exe build"
9 else
10 (cd src && ghc --make Main.hs -o ../bin/$(PROG).exe)
11 endif
12
13 web: demo/$(PROG).js
14
15 demo/$(PROG).js:
16 ifeq (, $(shell command -v hastec 2>/dev/null))
17 echo "hastec not found in PATH, skipping web build"
18 else
19 (cd src && hastec --make HasteMain.hs -o $(PROG).js && mv $(PROG).js ../demo/$(PROG).js)
20 endif
21
22 clean:
23 rm -f bin/$(PROG).exe demo/$(PROG).js
24 find . -name '*.o' -exec rm {} \;
25 find . -name '*.hi' -exec rm {} \;
26 find . -name '*.jsmod' -exec rm {} \;
+0
-28
build.sh less more
0 #!/bin/sh
1
2 PROG=tandem
3
4 if command -v ghc >/dev/null 2>&1; then
5 echo "building $PROG.exe with ghc"
6 (cd src && ghc --make Main.hs -o ../bin/$PROG.exe)
7 else
8 echo "ghc not found, not building $PROG.exe"
9 fi
10
11 # For this to work, you need hastec installed.
12 # You also need parsec installed in a way that haste can use it:
13 #
14 # haste-cabal install parsec-3.1.1
15 #
16 # Later versions might not work. For example, 3.1.13.0 fails to build for me at:
17 # Preprocessing library generic-deriving-1.12.3...
18 # src/Generics/Deriving/TH/Pre4_9.hs:177:20:
19 # parse error on input ‘->’
20 #
21
22 if command -v hastec >/dev/null 2>&1; then
23 echo "building $PROG.js with hastec"
24 (cd src && hastec --make HasteMain.hs -o $PROG.js && mv $PROG.js ../demo/)
25 else
26 echo "hastec not found, not building $PROG.js"
27 fi
+0
-4
clean.sh less more
0 #!/bin/sh
1
2 rm -f src/*.hi src/*.o src/*.jsmod bin/*.exe
3 rm -f src/Language/*/*.hi src/Language/*/*.o src/Language/*/*.jsmod