sbsv2/raptor/test/smoke_suite/test_resources/tem/cleantems.mk
changeset 13 c327db0664bb
equal deleted inserted replaced
12:5e7562f67577 13:c327db0664bb
       
     1 #
       
     2 # Copyright (c) 2009 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 the License "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 #
       
    16 #
       
    17 # Clean up any output files from temex.mk
       
    18 # prior to it being executed.
       
    19 # no other way to do this!
       
    20 
       
    21 
       
    22 #find works properly on Samba in case insensitive mode 
       
    23 # with -iname whereas shell globbing doesn't  
       
    24 # i.e. rm TARGETNAME* doesn't work but this does
       
    25 
       
    26 #find  $(EPOCROOT)/epoc32/build/ -iname 'TEMTEST_*.out' -exec rm \{\} \; ; true
       
    27 define clean
       
    28 rm $(EPOCROOT)/epoc32/build/TEMTEST_*  $(EPOCROOT)/epoc32/build/temtest_* $(EPOCROOT)/epoc32/raptor_smoketest_tem_failed $(EPOCROOT)/epoc32/raptor_smoketest_tem_succeeded ; true
       
    29 endef
       
    30 
       
    31 DO_NOTHING: 
       
    32 	@echo "DO_NOTHING"
       
    33 
       
    34 
       
    35 MAKMAKE:
       
    36 	@echo "MAKMAKE"
       
    37 	$(clean)
       
    38 
       
    39 BLD:
       
    40 	@echo "BLD"
       
    41 	$(clean)
       
    42 
       
    43 
       
    44 SAVESPACE:
       
    45 	@echo "SAVESPACE"
       
    46 	$(clean)
       
    47 
       
    48 
       
    49 FREEZE:
       
    50 	@echo "FREEZE"
       
    51 	$(clean)
       
    52 
       
    53 
       
    54 LIB:
       
    55 	@echo "LIB"
       
    56 	$(clean)
       
    57 
       
    58 
       
    59 CLEANLIB :
       
    60 	@echo "CLEANLIB"
       
    61 	$(clean)
       
    62 
       
    63 
       
    64 RESOURCE :
       
    65 	@echo "RESOURCE"
       
    66 	$(clean)
       
    67 
       
    68 
       
    69 CLEAN :
       
    70 	@echo "CLEAN"
       
    71 	$(clean)
       
    72 
       
    73 
       
    74 RELEASABLES :
       
    75 	@echo "RELEASABLES"
       
    76 	$(clean)
       
    77 
       
    78 
       
    79 FINAL :
       
    80 	@echo "FINAL"
       
    81 	$(clean)
       
    82 
       
    83