symbian-qemu-0.9.1-12/model-libraries/syborg-graphicswrapper/Makefile
branchgraphics-phase-3
changeset 108 ae83407e7b6a
equal deleted inserted replaced
98:542d4bc8b7ca 108:ae83407e7b6a
       
     1 # Copyright (c) 2010 Symbian Foundation.
       
     2 # All rights reserved.
       
     3 # This component and the accompanying materials are made available
       
     4 # under the terms of the License "Eclipse Public License v1.0"
       
     5 # which accompanies this distribution, and is available
       
     6 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 #
       
     8 # Description:
       
     9 # Toplevel Makefile to build syborg-graphicswrapper library in either debug or release mode
       
    10 
       
    11 .phony: all clean install distclean
       
    12 
       
    13 
       
    14 # Ensure DEBUG_LIBS is defined to make a debug build
       
    15 ifneq ($(DEBUG_LIBS),)
       
    16 build_dir=Debug 
       
    17 else
       
    18 build_dir=Release 
       
    19 endif
       
    20 
       
    21 all clean install distclean:
       
    22 	$(MAKE) -C $(build_dir) $@ -f ../target.mak
       
    23 
       
    24