File: Makefile

package info (click to toggle)
darcsum 1.10%2B20120116-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 200 kB
  • sloc: lisp: 1,783; haskell: 50; sh: 34; makefile: 22
file content (31 lines) | stat: -rw-r--r-- 425 bytes parent folder | download | duplicates (3)
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

# called on each darcs commit
commithook: site

sitebuild site: hakyll index.html
	./hakyll build

index.html:
	ln -s README.html index.html

siteclean: hakyll
	./hakyll clean

sitepreview: hakyll
	./hakyll preview 8001

hakyll: hakyll.hs
	ghc --make -Wall hakyll.hs

# misc
tag: TAGS

TAGS: *.el *.hs *.markdown Makefile
	etags *.el *.hs *.markdown Makefile

clean:
	rm -f *.o *.hi

Clean: clean
	rm -rf _cache _site TAGS