os/kernelhwsrv/kerneltest/f32test/loader/ldrtst.mke
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 # f32test/loader/ldrtst.mke
     2 #
     3 # Copyright (c) 2000 Symbian Ltd.  All rights reserved.
     4 #
     5 
     6 ifeq "$(OS)" "Windows_NT"
     7 ERASE := @erase 2>>nul
     8 else
     9 ERASE := @erase
    10 endif
    11 
    12 SDIR := ..\loader
    13 GDIR := ..\loader\gen
    14 
    15 MAKMAKE : MAKEGENERATED
    16 
    17 FREEZE :
    18 
    19 LIB : LIBGENERATED
    20 
    21 CLEANLIB :
    22 
    23 RESOURCE :
    24 
    25 FINAL :
    26 
    27 BLD SAVESPACE : BLDGENERATED
    28 
    29 RELEASABLES :
    30 
    31 ROMFILE :
    32 
    33 CLEAN :
    34 
    35 $(GDIR)\dlltree.inf :	$(SDIR)\dlltree.pl $(SDIR)\dllt.h $(SDIR)\dllt.cpp $(SDIR)\dllt.cia				\
    36 					$(SDIR)\dlltifc.h $(SDIR)\exet.cpp $(SDIR)\exetifc.h $(SDIR)\dlltree.txt
    37 				perl $(SDIR)\dlltree.pl $(SDIR)\dlltree.txt $(GDIR)
    38 
    39 $(GDIR)\ldrtest.iby :	$(SDIR)\dlltree.pl $(SDIR)\dllt.h $(SDIR)\dllt.cpp $(SDIR)\dllt.cia			\
    40 						$(SDIR)\dlltifc.h $(SDIR)\exet.cpp $(SDIR)\exetifc.h $(SDIR)\dlltree.txt
    41 				perl $(SDIR)\dlltree.pl $(SDIR)\dlltree.txt $(GDIR)
    42 
    43 $(GDIR)\dlltree.h :	$(SDIR)\dlltree.pl $(SDIR)\dllt.h $(SDIR)\dllt.cpp $(SDIR)\dllt.cia				\
    44 					$(SDIR)\dlltifc.h $(SDIR)\exet.cpp $(SDIR)\exetifc.h $(SDIR)\dlltree.txt
    45 				perl $(SDIR)\dlltree.pl $(SDIR)\dlltree.txt $(GDIR)
    46 
    47 $(GDIR)\dllt.h :	$(SDIR)\dllt.h
    48 				copy $(SDIR)\dllt.h $(GDIR)\dllt.h
    49 
    50 $(GDIR)\dllt.cpp :	$(SDIR)\dllt.cpp
    51 				copy $(SDIR)\dllt.cpp $(GDIR)\dllt.cpp
    52 
    53 $(GDIR)\dllt.cia :	$(SDIR)\dllt.cia
    54 				copy $(SDIR)\dllt.cia $(GDIR)\dllt.cia
    55 
    56 $(GDIR)\dlltifc.h :	$(SDIR)\dlltifc.h
    57 				copy $(SDIR)\dlltifc.h $(GDIR)\dlltifc.h
    58 
    59 $(GDIR)\exet.cpp :	$(SDIR)\exet.cpp
    60 				copy $(SDIR)\exet.cpp $(GDIR)\exet.cpp
    61 
    62 $(GDIR)\exetifc.h :	$(SDIR)\exetifc.h
    63 				copy $(SDIR)\exetifc.h $(GDIR)\exetifc.h
    64 
    65 $(GDIR)\exetifc.cpp :	$(SDIR)\exetifc.cpp
    66 				copy $(SDIR)\exetifc.cpp $(GDIR)\exetifc.cpp
    67 
    68 $(GDIR)\t_ldrtst.h :	$(SDIR)\t_ldrtst.h
    69 				copy $(SDIR)\t_ldrtst.h $(GDIR)\t_ldrtst.h
    70 
    71 $(GDIR)\t_ldrtst.cpp :	$(SDIR)\t_ldrtst.cpp
    72 				copy $(SDIR)\t_ldrtst.cpp $(GDIR)\t_ldrtst.cpp
    73 
    74 $(GDIR)\t_ldrtst2.cpp :	$(SDIR)\t_ldrtst2.cpp
    75 				copy $(SDIR)\t_ldrtst2.cpp $(GDIR)\t_ldrtst2.cpp
    76 
    77 $(GDIR)\t_ldrtst.mmp :	$(SDIR)\t_ldrtst.mmp
    78 				copy $(SDIR)\t_ldrtst.mmp $(GDIR)\t_ldrtst.mmp
    79 
    80 $(GDIR)\t_sfhash.cpp :	$(SDIR)\t_sfhash.cpp
    81 				copy $(SDIR)\t_sfhash.cpp $(GDIR)\t_sfhash.cpp
    82 
    83 $(GDIR)\t_hash.h :	$(SDIR)\t_hash.h
    84 				copy $(SDIR)\t_hash.h $(GDIR)\t_hash.h
    85 
    86 GENERATED :			$(GDIR)\dlltree.inf $(GDIR)\ldrtest.iby $(GDIR)\dlltree.h						\
    87 					$(GDIR)\dllt.h $(GDIR)\dllt.cpp $(GDIR)\dllt.cia $(GDIR)\dlltifc.h				\
    88 					$(GDIR)\exet.cpp $(GDIR)\exetifc.h $(GDIR)\exetifc.cpp							\
    89 					$(GDIR)\t_ldrtst.cpp $(GDIR)\t_ldrtst2.cpp $(GDIR)\t_ldrtst.h					\
    90 					$(GDIR)\t_ldrtst.mmp $(GDIR)\t_sfhash.cpp $(GDIR)\t_hash.h
    91 				cd $(GDIR) && call bldmake -f dlltree.inf bldfiles
    92 				cd $(GDIR) && call bldmake -f dlltree.inf bldfiles $(PLATFORM)
    93 
    94 MAKEGENERATED : GENERATED
    95 			cd $(GDIR) && call abld test makefile $(PLATFORM)
    96 
    97 LIBGENERATED : GENERATED
    98 			cd $(GDIR) && call abld test library $(PLATFORM)
    99 
   100 BLDGENERATED : GENERATED
   101 			cd $(GDIR) && call abld test target $(PLATFORM) $(CFG)
   102 
   103