summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <anholt@FreeBSD.org>2004-06-01 00:06:14 +0000
committerEric Anholt <anholt@FreeBSD.org>2004-06-01 00:06:14 +0000
commit23d0d91d898a0dcf30370e4fdb24dbcbc4b07eef (patch)
tree52c64b82ec07c5a19906a135bd6cb50c24ad2863
parent2388380243d3ccaeb7488ad17a773e44212593bc (diff)
Build fixing for FreeBSD. GNU make is installed as gmake, so make a MAKE
variable (defaults to "make") and use that. Use the MKDEP and MKDEP_OPTIONS more. Our shell isn't bash, so change the instances of ">& /dev/null" to a more compatible "> /dev/null 2>&1".
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 635f862..3af07a1 100644
--- a/Makefile
+++ b/Makefile
@@ -44,7 +44,8 @@ $(LIB_DIR)/$(GLW_LIB_NAME): $(OBJECTS)
#
depend: $(GLW_SOURCES)
touch depend
- $(MKDEP) $(MKDEP_OPTIONS) -I$(TOP)/include $(GLW_SOURCES) >&/dev/null
+ $(MKDEP) $(MKDEP_OPTIONS) -I$(TOP)/include $(GLW_SOURCES) \
+ > /dev/null 2>&1
include depend