mirror of
https://github.com/zxing/zxing.git
synced 2024-11-13 06:24:06 -08:00
41 lines
684 B
Makefile
41 lines
684 B
Makefile
|
|
||
|
ifeq (WINS,$(findstring WINS, $(PLATFORM)))
|
||
|
ZDIR=$(EPOCROOT)epoc32\release\$(PLATFORM)\$(CFG)\Z
|
||
|
else
|
||
|
ZDIR=$(EPOCROOT)epoc32\data\z
|
||
|
endif
|
||
|
|
||
|
TARGETDIR=$(ZDIR)\resource\apps
|
||
|
ICONTARGETFILENAME=$(TARGETDIR)\ZXingBarcodeReader_0xEF24C10A.mif
|
||
|
|
||
|
ICONDIR=..\gfx
|
||
|
|
||
|
do_nothing :
|
||
|
@rem do_nothing
|
||
|
|
||
|
MAKMAKE : do_nothing
|
||
|
|
||
|
BLD : do_nothing
|
||
|
|
||
|
CLEAN : do_nothing
|
||
|
|
||
|
LIB : do_nothing
|
||
|
|
||
|
CLEANLIB : do_nothing
|
||
|
|
||
|
RESOURCE : $(ICONTARGETFILENAME)
|
||
|
|
||
|
$(ICONTARGETFILENAME) : $(ICONDIR)\QrDecoder.svg
|
||
|
mifconv $(ICONTARGETFILENAME) \
|
||
|
/c32 $(ICONDIR)\QrDecoder.svg
|
||
|
|
||
|
FREEZE : do_nothing
|
||
|
|
||
|
SAVESPACE : do_nothing
|
||
|
|
||
|
RELEASABLES :
|
||
|
@echo $(ICONTARGETFILENAME)
|
||
|
|
||
|
FINAL : do_nothing
|
||
|
|