summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorjcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5>2006-08-15 03:39:14 +0000
committerjcorgan <jcorgan@221aa14e-8319-0410-a670-987f0aec2ac5>2006-08-15 03:39:14 +0000
commitc7aab5e1c9cbd2e1624d6cfbe92ca6aba70e7f62 (patch)
tree2e4dfb93b251f1fdd08cecac57d4706689d97518 /Makefile.common
parent4e8b03a868354c8c8ef9c72b021bf52a53615aee (diff)
Fixes for ticket:35, allowing use of BSD make instead of GNU make.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3286 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.common b/Makefile.common
index bd25233edb..3bf752f98f 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -71,3 +71,7 @@ USRP_LIBS = -L$(top_builddir)/usrp/host/lib \
# This used to be set in configure.ac but is now defined here for all
# Makefiles when this fragment is included.
STD_DEFINES_AND_INCLUDES=$(DEFINES) $(GNURADIO_INCLUDES) $(BOOST_CFLAGS)
+
+# Fix for BSD make not defining $(RM). We define it now in configure.ac
+# using AM_PATH_PROG, but now here have to add a -f to be like GNU make
+RM=$(RM_PROG) -f