projects
/
YACASL2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4950889
)
.dファイルをインクルードする書き方を修正
v0.2p17
author
j8takagi
<j8takagi@nifty.com>
Wed, 24 Jul 2013 13:49:19 +0000
(22:49 +0900)
committer
j8takagi
<j8takagi@nifty.com>
Wed, 24 Jul 2013 13:55:36 +0000
(22:55 +0900)
VERSION
patch
|
blob
|
history
src/Makefile
patch
|
blob
|
history
diff --git
a/VERSION
b/VERSION
index
d6e0a20
..
75a975b
100644
(file)
--- a/
VERSION
+++ b/
VERSION
@@
-1,2
+1
@@
-v0.2p16
-
+v0.2p17
diff --git
a/src/Makefile
b/src/Makefile
index
59e1189
..
932dac4
100644
(file)
--- a/
src/Makefile
+++ b/
src/Makefile
@@
-33,12
+33,7
@@
dumpword: dumpword.o $(addsuffix .o,$(COMMONOBJ))
# .dファイルからヘッダファイルの依存関係を取得する
# tags、check、clean、.d で終わるターゲットの場合は除く
-ifeq (,$(strip \
- $(filter %tags,$(MAKECMDGOALS)) \
- $(filter %check,$(MAKECMDGOALS)) \
- $(filter %clean,$(MAKECMDGOALS)) \
- $(filter %.d,$(MAKECMDGOALS))\
-))
+ifeq (,$(filter %tags %check %clean %.d,$(MAKECMDGOALS)))
-include $(addsuffix .d,$(CMDOBJ) $(COMMONOBJ) $(CASL2OBJ) $(ASOBJ) $(EXECOBJ))
endif