mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 20:48:08 +02:00
Missed in last commit:
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".
This commit is contained in:
parent
2fb5d15ce3
commit
f016e2509e
3 changed files with 4 additions and 3 deletions
|
|
@ -65,7 +65,7 @@ $(LIB_DIR)/$(GLUT_LIB_NAME): depend $(OBJECTS)
|
|||
# what's included by any source file.
|
||||
depend: $(SOURCES)
|
||||
touch depend
|
||||
makedepend -fdepend -Y $(INCLUDES) $(SOURCES) >& /dev/null
|
||||
$(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(SOURCES) > /dev/null 2>&1
|
||||
|
||||
# Emacs tags
|
||||
tags:
|
||||
|
|
|
|||
|
|
@ -57,7 +57,8 @@ drmtest: xf86drm.o drmtest.o
|
|||
|
||||
depend: $(C_SOURCES) $(ASM_SOURCES)
|
||||
touch depend
|
||||
makedepend -fdepend -Y $(INCLUDES) $(C_SOURCES) $(ASM_SOURCES) >& /dev/null
|
||||
$(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(C_SOURCES) $(ASM_SOURCES) \
|
||||
> /dev/null 2>&1
|
||||
|
||||
|
||||
# Emacs tags
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ $(LIB_DIR)/$(LIBNAME): $(OBJECTS) $(MESA_MODULES) $(WINOBJ) Makefile ../Makefil
|
|||
depend: $(C_SOURCES) $(ASM_SOURCES)
|
||||
touch depend
|
||||
$(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(C_SOURCES) $(ASM_SOURCES) \
|
||||
>& /dev/null
|
||||
> /dev/null 2>&1
|
||||
|
||||
|
||||
# Emacs tags
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue