This file ( 685B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
################################################################################
# Makefile for beam library
# T.Barnaby, BEAM Ltd, 2007-02-22
# updated by D.Korchagin, CERN AB-BI-SW, 2007-08-31
################################################################################
#
TOP = ..
include ${TOP}/Makefile.config
ifeq ("$(BUILD)", "FULL")
DIRS = libBeam bidl boapns
else
DIRS = libBeam
endif
all:
@for f in $(DIRS); do if ! (make -C $$f all); then break; fi; done
install:
@for f in $(DIRS); do if ! (make -C $$f install); then break; fi; done
clean:
@(for f in $(DIRS); do (make -C $$f clean); done)
@(for f in tests/*; do (make -C $$f clean); done)
#depend:
#