Browse Source

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".
tags/R300_DRIVER_0
Eric Anholt 21 years ago
parent
commit
f016e2509e
3 changed files with 4 additions and 3 deletions
  1. 1
    1
      src/glut/mini/Makefile
  2. 2
    1
      src/glx/mini/Makefile
  3. 1
    1
      src/mesa/drivers/dri/Makefile.template

+ 1
- 1
src/glut/mini/Makefile View File

# what's included by any source file. # what's included by any source file.
depend: $(SOURCES) depend: $(SOURCES)
touch depend touch depend
makedepend -fdepend -Y $(INCLUDES) $(SOURCES) >& /dev/null
$(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(SOURCES) > /dev/null 2>&1


# Emacs tags # Emacs tags
tags: tags:

+ 2
- 1
src/glx/mini/Makefile View File



depend: $(C_SOURCES) $(ASM_SOURCES) depend: $(C_SOURCES) $(ASM_SOURCES)
touch depend 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 # Emacs tags

+ 1
- 1
src/mesa/drivers/dri/Makefile.template View File

depend: $(C_SOURCES) $(ASM_SOURCES) depend: $(C_SOURCES) $(ASM_SOURCES)
touch depend touch depend
$(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(C_SOURCES) $(ASM_SOURCES) \ $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDES) $(C_SOURCES) $(ASM_SOURCES) \
>& /dev/null
> /dev/null 2>&1




# Emacs tags # Emacs tags

Loading…
Cancel
Save