os/security/authorisation/userpromptservice/test/tups/packages/testromstub.mak
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
ifeq "$(PLATFORM)" "WINSCW"
sl@0
     2
ZDIR:=$(EPOCROOT)epoc32\release\$(PLATFORM)\$(CFG)\z
sl@0
     3
SISFILE=$(ZDIR)\system\install\testupsromstub.sis
sl@0
     4
endif
sl@0
     5
sl@0
     6
ifeq "$(PLATFORM)" "ARMV5"
sl@0
     7
ZDIR:=$(EPOCROOT)epoc32\data\z
sl@0
     8
SISFILE=$(ZDIR)\system\install\testupsromstub.sis
sl@0
     9
endif
sl@0
    10
sl@0
    11
#
sl@0
    12
# The targets invoked by abld...
sl@0
    13
#
sl@0
    14
sl@0
    15
MAKMAKE : DO_NOTHING
sl@0
    16
FREEZE : DO_NOTHING
sl@0
    17
LIB : DO_NOTHING
sl@0
    18
RESOURCE : DO_NOTHING
sl@0
    19
CLEANLIB : DO_NOTHING
sl@0
    20
FINAL : DO_NOTHING
sl@0
    21
SAVESPACE : BLD
sl@0
    22
BLD : MAKEDATA
sl@0
    23
sl@0
    24
DO_NOTHING:
sl@0
    25
sl@0
    26
sl@0
    27
ifndef SISFILE
sl@0
    28
#
sl@0
    29
# Not supported on this target so nothing to do
sl@0
    30
#
sl@0
    31
MAKEDATA :
sl@0
    32
	@echo ----------------
sl@0
    33
	@echo  Do nothing ...
sl@0
    34
	@echo ----------------
sl@0
    35
sl@0
    36
CLEAN:
sl@0
    37
sl@0
    38
RELEASABLES:
sl@0
    39
sl@0
    40
else
sl@0
    41
#
sl@0
    42
# WINSCW or ARM
sl@0
    43
#
sl@0
    44
MAKEDATA : $(SISFILE)
sl@0
    45
sl@0
    46
$(SISFILE) : testupsromstub.pkg
sl@0
    47
	@cd
sl@0
    48
	@echo ---------------------------
sl@0
    49
	@echo Building Test UPS ROM stub
sl@0
    50
	@echo ---------------------------
sl@0
    51
	@echo nb. The stub does not contain any exes, just mentions them.
sl@0
    52
	makesis -s $< $@
sl@0
    53
sl@0
    54
DO_NOTHING:
sl@0
    55
	rem do nothing
sl@0
    56
sl@0
    57
CLEAN :     
sl@0
    58
	-@erase $(SISFILE) /f
sl@0
    59
sl@0
    60
RELEASABLES :
sl@0
    61
	@echo $(SISFILE)
sl@0
    62
endif