The macro RUN_WITHOUT_REGISTRAR can now be caused to be defined via

environment variable. E.g. run:
  RUN_WITHOUT_REGISTRAR=1 jam


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6055 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2004-01-13 00:31:23 +00:00
parent 36aeb57dce
commit 942d253101
+8
View File
@@ -1,5 +1,13 @@
SubDir OBOS_TOP src kits ;
# Allow if defined allows to run applications without the registrar
# -- for development only, of course.
if $(RUN_WITHOUT_REGISTRAR) {
local defines = [ FDefines RUN_WITHOUT_REGISTRAR ] ;
SubDirCcFlags $(defines) ;
SubDirC++Flags $(defines) ;
}
# Collect libopenbeos.so sources.
subdirs = app interface support storage ;
for subdir in $(subdirs) {