Skip to content
Permalink
3ea2ff6c81
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
25 lines (21 sloc) 506 Bytes
#
# Common defines for all projects. This is the place to turn on or off
# debugging and optimization for everything.
#
# OPT := -g
OPT := -O3 -DNDEBUG
# OPT := -O3
# Backend configuration flags
# PANASAS_OSD=1
# PANASAS_OSDSIM=1 # (ignored if PANASAS_OSD=0)
# Define this to build a pvfs2-server executable with an embedded OSD target
# inside it.
#PVFS_OSD_INTEGRATED := 1
# vim: ft=make
UNAME= $(shell uname)
ifeq (FreeBSD,$(UNAME))
FreeBSD_Make=1
endif
ifeq (Darwin,$(UNAME))
FreeBSD_Make=1
endif