File: Makefile

package info (click to toggle)
wily 0.13.42-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,820 kB
  • sloc: ansic: 25,541; perl: 580; sh: 415; makefile: 400; python: 30; exp: 17
file content (18 lines) | stat: -rw-r--r-- 324 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SHELL=/bin/sh

html  = h1 h2 h3 h4 h5 h6 title pre cite code em kbd samp strong var tt dfn
html1 = bold italic underline

install:
	- for file in $(html) ; do \
		rm -f $$file ; \
		ln -s html $$file ; \
	done

	- for file in $(html1) ; do \
		rm -f $$file ; \
		ln -s html1 $$file ; \
	done

clean:
	rm -f $(html) $(html1)