projects
/
makefiles.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
エラーが発生するテストのMakefileを修正
[makefiles.git]
/
texinfo_mk
/
Makefile
1
# # ターゲットを指定
2
# TARGET :=
3
# # HTMLファイルで使うCSSファイルを指定
4
# CSS :=
5
6
# # infoのインストール先を指定
7
# prefix :=
8
# infodir :=
9
10
.PHONY: all distclean clean
11
12
all: $(TARGET)
13
14
distclean: texinfo-distclean
15
16
clean: texinfo-clean
17
18
include texinfo.mk
19
20
include install-info.mk