#=============================================================================== # # Description: # Makefile to build the $(TARGET) downloadable module. # # The following nmake targets are available in this makefile: # # all - make .elf and .mod image files (default) # clean - delete object directory and image files # filename.o - make object file # filename.mix - mixes assembly and source # # The above targets can be made with the following command: # # nmake /f makefile.mak [target] # #=============================================================================== # Customize the below 2 lines to meet your environment HEXTOOL = D:\bin\BREW_Elf2Mod\bin\elf2mod.exe MYINC = -I"$(SDKHOME)\jaext" SDKHOME = $(BREWDIR) TARGET = applet/app/app # Target name for output files TARGETDIR = build # Target name for object dir EXTRA_OBJS = armlib\floats.o LFLAGS = -split -reloc $(ROPILINK) -rwpi -entry 0x8000 #------------------------------------------------------------------------------ # Application objects, common make file and dependencies. # The files should be included in that order! #------------------------------------------------------------------------------ !INCLUDE "make_objs.inc" !INCLUDE "make_common.inc" !INCLUDE "make_deps.inc"