File: Makefile

package info (click to toggle)
doublex 1.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 420 kB
  • ctags: 891
  • sloc: python: 3,750; makefile: 56
file content (14 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

LINKS=css lib plugin js

all: reveal.js $(LINKS)

reveal.js:
	git clone --depth 1 https://github.com/hakimel/reveal.js.git

$(LINKS):
	ln -s reveal.js/$@ $@

clean:
	$(RM) -r reveal.js
	$(RM) $(LINKS)