File: Makefile

package info (click to toggle)
ch5m3d 1.2.5%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 2,776 kB
  • sloc: php: 184; sh: 57; makefile: 24
file content (27 lines) | stat: -rw-r--r-- 533 bytes parent folder | download | duplicates (4)
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
DESTDIR =
MINIFIED = ch5m3d.js qchem/ch5m3dq.js

all: $(MINIFIED)

ch5m3d.js: ch5m3d.full.js
	cat ch5m3d.js.license_header > $@
	yui-compressor  $< >> $@

qchem/ch5m3dq.js: qchem/ch5m3dq.full.js
	cat qchem/ch5m3dq.js.license_header > $@
	yui-compressor  $< >> $@

variations/ch5m3dv.min.js: variations/ch5m3dv.js
	yui-compressor -o $@ $<

documentation.pdf:
	htmldoc --batch documentation.book

clean:
	rm -f $(MINIFIED)
	find . -name "*~" -exec rm {} \;

install:
	# nothing: debian/install does the work

.PHONY: all clean install