File: Makefile

package info (click to toggle)
swish-e 1.1-1
  • links: PTS
  • area: main
  • in suites: hamm, potato, slink
  • size: 380 kB
  • ctags: 340
  • sloc: ansic: 4,540; makefile: 77; sh: 12
file content (13 lines) | stat: -rw-r--r-- 321 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
STRIP=sed '1,20{/newhead/d;/SunSITE/d;};s,\/Images\/,,'

all:
	mkdir -p tmp
	cat changes.html | $(STRIP) > tmp/changes.html
	cat documentation.html | $(STRIP) > tmp/documentation.html
	cat manual.html | $(STRIP) > tmp/manual.html
	cat team.html | $(STRIP) > tmp/team.html
	cp *.gif tmp
	cp *.txt tmp

clean:
	-rm -rf tmp