1234567891011121314151617181920212223242526272829303132333435 |
- #include UCLICDIR and CROSS
- include ../../../../../Makefile.project
- include ../../../../../Makefile.toolchain
- #***************************************************************************
- # Define Environment Variables
- #***************************************************************************
- ifndef LIB_DIR
- LIB_DIR = ../../../../../lib
- endif
- # define O_DIRECT
- # Target library name
- TARGET_STATIC = $(LIB_DIR)/libMMUIresources.a
- CFLAGS += -I./include
- CFLAGS += -I../../../../../include/gsl
- CFLAGS += -I../../../../../../drivers/include/
- CFLAGS += -I../../../../../include/middleware/common
- CFLAGS += -I../../../../../include/middleware/common/gui_eng
- CFLAGS += $(UIRESOURCE_INC)
- #vpath
- VPATH = menu region string
- include ./menu/menu.in
- SRCS_LIST += $(SOURCES)
- SRCS_LIST += FilePlayer_region.c FilePlayer_bitmap_res.c FilePlayer_palette_res.c
- all: $(TARGET_STATIC)
- clean_loop: clean
- rm -fr $(TARGET_STATIC)
- # include common make rule
- include ../../../../../rules.mak
|