projects
/
makefiles.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
誤字修正
[makefiles.git]
/
dot_mk
/
Makefile
1
# ファイルから作成されるグラフィックファイルを
2
# ターゲットファイルとして指定
3
#
4
# make および make all でのターゲットファイルになるほか、
5
# dot-distcleanでの削除対象になる。
6
#
7
# 初期設定では、ディレクトリにあるすべての
8
# dotファイルに対するpdfファイル
9
TARGETS := $(subst .dot,.pdf,$(wildcard *.dot))
10
11
.PHONY: all clean distclean
12
13
all: $(TARGETS)
14
15
include dot.mk
16
17
distclean: dot-distclean