diff options
author | gdt <gdt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2006-10-23 13:21:21 +0000 |
---|---|---|
committer | gdt <gdt@221aa14e-8319-0410-a670-987f0aec2ac5> | 2006-10-23 13:21:21 +0000 |
commit | 32b58a7e22e7f88725c005972aa37065a00b2c4d (patch) | |
tree | eb1b60f9f627736f32300388f296779f3cc8b40b /gr-howto-write-a-block/src | |
parent | 748e8b199f9c1586b802646393037a297fa9c2f8 (diff) |
change $< to explicit prereq, avoiding gmake-specific use of $< in
non-pattern rule.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3833 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-howto-write-a-block/src')
-rw-r--r-- | gr-howto-write-a-block/src/lib/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-howto-write-a-block/src/lib/Makefile.am b/gr-howto-write-a-block/src/lib/Makefile.am index 3bac06d1c4..54847ede8b 100644 --- a/gr-howto-write-a-block/src/lib/Makefile.am +++ b/gr-howto-write-a-block/src/lib/Makefile.am @@ -73,7 +73,7 @@ _howto_la_LIBADD = \ -lstdc++ howto.cc howto.py: howto.i $(ALL_IFILES) - $(SWIG) $(SWIGPYTHONARGS) -module howto -o howto.cc $< + $(SWIG) $(SWIGPYTHONARGS) -module howto -o howto.cc howto.i # These headers get installed in ${prefix}/include/gnuradio grinclude_HEADERS = \ |