The global OPTIM variable is now reset at the end of the file.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2846 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2003-02-25 17:10:55 +00:00
parent 98b972c906
commit d62fee5142

View File

@ -1,5 +1,8 @@
SubDir OBOS_TOP src add-ons kernel file_systems bfs ;
# save original optimization level
oldOPTIM = $(OPTIM) ;
# set some additional defines
{
local defines =
@ -48,3 +51,6 @@ actions ignore InstallBFS
}
InstallBFS install : obfs ;
# restore original optimization level
OPTIM = $(oldOPTIM) ;