aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorYunsup Lee <yunsup@cs.berkeley.edu>2013-05-15 12:02:42 -0700
committerYunsup Lee <yunsup@cs.berkeley.edu>2013-05-15 12:02:42 -0700
commit28b983b2663792cf4c0c3c8b5098e1aa5b6e2bae (patch)
treed746eb7f04b0fadec6d6a562bd825b6e8b6d70b3 /Makefile.in
parentb3f7c6045cea1d5132bd4b0d367eff315f044cc0 (diff)
downloadspike-28b983b2663792cf4c0c3c8b5098e1aa5b6e2bae.zip
spike-28b983b2663792cf4c0c3c8b5098e1aa5b6e2bae.tar.gz
spike-28b983b2663792cf4c0c3c8b5098e1aa5b6e2bae.tar.bz2
fix make issue
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 74bebeb..97543ef 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -197,7 +197,7 @@ $(2)_objs := $$(patsubst %.cc, %.o, $$($(2)_srcs))
$(2)_c_objs := $$(patsubst %.c, %.o, $$($(2)_c_srcs))
$(2)_deps := $$(patsubst %.o, %.d, $$($(2)_objs))
$(2)_c_deps := $$(patsubst %.o, %.d, $$($(2)_c_objs))
-$$($(2)_objs) : %.o : %.cc $(2)_gen_hdrs
+$$($(2)_objs) : %.o : %.cc $$($(2)_gen_hdrs)
$(COMPILE) -c $$<
$$($(2)_c_objs) : %.o : %.c
$(COMPILE_C) -c $$<
@@ -298,13 +298,13 @@ clean-$(1) :
libs += lib$(1).a
objs += $$($(2)_objs)
srcs += $$(addprefix $(src_dir)/$(1)/, $$($(2)_srcs))
-hdrs += $$(addprefix $(src_dir)/$(1)/, $$($(2)_hdrs) $$($(2)_gen_hdrs))
+hdrs += $$(addprefix $(src_dir)/$(1)/, $$($(2)_hdrs)) $$($(2)_gen_hdrs)
junk += $$($(2)_junk)
deps += $$($(2)_deps)
test_outs += $$($(2)_test_outs)
-install_hdrs += $$(addprefix $(src_dir)/$(1)/, $$($(2)_hdrs) $$($(2)_gen_hdrs))
+install_hdrs += $$(addprefix $(src_dir)/$(1)/, $$($(2)_hdrs)) $$($(2)_gen_hdrs)
install_libs += lib$(1).a
install_exes += $$($(2)_install_prog_exes)