pictographs/AknPictograph/group/AknPictographConfig.mk
changeset 0 05e9090e2422
equal deleted inserted replaced
-1:000000000000 0:05e9090e2422
       
     1 #
       
     2 # Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
       
     3 # All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Nokia Corporation - initial contribution.
       
    11 #
       
    12 # Contributors:
       
    13 #
       
    14 # Description: 
       
    15 #    Builds pictograph bitmaps.
       
    16 #
       
    17 CONFIG_DIR=vodafone
       
    18 
       
    19 # Dir for generated files
       
    20 GENERATED_DIR=..\generated
       
    21 
       
    22 #Dummy text
       
    23 DUMMY_TEXT=// Don't delete this file! Will be overridden during build.
       
    24 
       
    25 CONFIGURE :
       
    26 	@perl AknPictographConfig.pl $(CONFIG_DIR)
       
    27 
       
    28 # This dummy filecreation is needed to avoid makefile dependency problems
       
    29 # The valid files will be generated later during the build process	
       
    30 FILE_EXPORT :
       
    31 	@if not exist $(GENERATED_DIR) md $(GENERATED_DIR)
       
    32 	@echo $(DUMMY_TEXT) > $(GENERATED_DIR)\AknPictographDefinitions.h
       
    33 	@echo $(DUMMY_TEXT) > $(GENERATED_DIR)\AknPictographRange.h
       
    34 	@echo $(DUMMY_TEXT) > $(GENERATED_DIR)\aknpictographconfig.h	
       
    35 
       
    36 do_nothing :
       
    37 	@rem do_nothing
       
    38 
       
    39 #
       
    40 # The targets invoked by bld...
       
    41 #
       
    42 
       
    43 MAKMAKE : do_nothing
       
    44 
       
    45 FINAL : do_nothing
       
    46 
       
    47 BLD : do_nothing
       
    48 
       
    49 SAVESPACE : do_nothing
       
    50 
       
    51 RESOURCE : $(TARGETDIR) FILE_EXPORT CONFIGURE
       
    52 
       
    53 
       
    54 CLEAN_GENERATED_DIR : 
       
    55 	-@erase /q $(GENERATED_DIR)\*.*
       
    56 
       
    57 CLEAN : CLEAN_GENERATED_DIR FILE_EXPORT
       
    58 
       
    59 FREEZE : do_nothing
       
    60 
       
    61 LIB : do_nothing
       
    62 
       
    63 CLEANLIB : do_nothing
       
    64 
       
    65 RELEASABLES : do_nothing
       
    66