config root man

Current Path : /usr/src/contrib/ofed/management/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/src/contrib/ofed/management/Makefile

SUBDIRS:= libibcommon libibumad libibmad opensm infiniband-diags

all:

config:
	$(foreach dir, $(SUBDIRS), \
		if [ ! -z "$(force)" -o ! -x $(dir)/configure ] ; then \
			( cd $(dir) && ./autogen.sh && ./configure $(CONFIG_OPTS) ) \
				|| exit 1 ; \
		elif [ ! -e $(dir)/Makefile ] ; then \
			( cd $(dir) && ./configure $(CONFIG_OPTS) ) \
				|| exit 1 ; \
		fi ; )

automake: force=1
automake: config

all install: config
all install clean:
	$(foreach dir, $(SUBDIRS), $(MAKE) -C $(dir) $@ && ) echo $@ done

Man Man