File: makefile_m4

package info (click to toggle)
lg-issue22 6-5
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,144 kB
  • ctags: 184
  • sloc: makefile: 36; sh: 4
file content (17 lines) | stat: -rw-r--r-- 191 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.SUFFIXES: .m4 .html

.m4.html:
	m4 -P $*.m4 >$*.html
	chmod 644 $*.html

HTML_FILES=using_m4.html

default: $(HTML_FILES)

all: default 

*.html: stdlib.m4

clean:
	rm -rf *~ $(HTML_FILES)