48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
|
|
# OUTPUT type
|
|
# 1 - .out
|
|
# 2 - .a
|
|
# 3 - .so
|
|
OUTPUT_TYPE = 2
|
|
OUTPUT_NAME = cvg
|
|
|
|
SUB_DIRS = bwm/src common/src nwm/src prm/src rt/src security/src
|
|
|
|
# .h files dir
|
|
ADD_INCLUDE += $(TOPDIR)/plc/inc $(TOPDIR)/plc/inc/mme $(TOPDIR)/plc/halmac/inc $(TOPDIR)/common/os_shim/inc $(TOPDIR)/common/os_shim/arm/inc bwm/inc common/inc nwm/inc prm/inc rt/inc security/inc $(TOPDIR)/inc/os_shim/ $(TOPDIR)/inc/compiler/gcc $(TOPDIR)/inc $(TOPDIR)/inc/utils $(TOPDIR)/inc/pkt $(TOPDIR)/inc/cli $(TOPDIR)/inc/dbglog $(TOPDIR)/inc/ipc $(TOPDIR)/inc/plc_lib
|
|
|
|
# predefined macro
|
|
PRE_MARCO +=
|
|
|
|
# lib dir
|
|
ADD_LIBDIR =
|
|
|
|
# lib need to ld together
|
|
ADD_LIB =
|
|
|
|
########################################################
|
|
#leave the lines below un-modified
|
|
########################################################
|
|
ifdef TOPDIR
|
|
include $(TOPDIR)/build/makefile.cfg
|
|
else
|
|
include $(CURDIR)/build/makefile.cfg
|
|
TOPDIR = $(CURDIR)
|
|
export TOPDIR
|
|
endif
|
|
|
|
# display the obj files and output name
|
|
debug:
|
|
@echo TOPDIR=$(TOPDIR)
|
|
@echo OUTPUT_DIR=$(OUTPUT_DIR)
|
|
@echo OUTPUT_MAP=$(OUTPUT_MAP)
|
|
@echo OUTPUT_LIB=$(OUTPUT_FULL_NAME)
|
|
@echo DEPS=$(DEPS)
|
|
@echo OBJECTS=$(OBJECTS)
|
|
@echo SRCS=$(SRCS)
|
|
@echo OBJECTS folder=$(foreach dirname, $(SUB_DIRS), $(addprefix $(BIN_DIR)/, $(dirname)))
|
|
@echo output_name=$(OUTPUT_FULL_NAME)
|
|
@echo LINK_LIBS=$(LINK_LIBS)
|
|
@echo MAKEDEP=$(MAKEDEP)
|
|
@echo CC=$(CC)
|