73 lines
1.6 KiB
Makefile
73 lines
1.6 KiB
Makefile
|
include Makefile.def.cross
|
||
|
|
||
|
# target name, the target name must have the same name of c source file
|
||
|
TARGET_NAME=voice
|
||
|
|
||
|
# target
|
||
|
# for linux module driver: KO
|
||
|
# for application: EXE
|
||
|
# for dynamic library: DLL
|
||
|
TARGET_TYPE = EXE
|
||
|
|
||
|
# target object
|
||
|
# for application: APP
|
||
|
# for device driver: DRV
|
||
|
TARGET_OBJ = APP
|
||
|
|
||
|
TARGET_BOX =
|
||
|
|
||
|
#debug mode or release mode
|
||
|
DEBUG = TRUE
|
||
|
|
||
|
PLAT_R16 ?= TRUE
|
||
|
PLAT_LINUX ?= FALSE
|
||
|
PLAT_WIN32 ?= FALSE
|
||
|
PLAT_WIN64 ?= FALSE
|
||
|
|
||
|
VPATH = ../Modules/voice/
|
||
|
|
||
|
# source code
|
||
|
|
||
|
# set the source file, don't used .o because of ...
|
||
|
# MRS Board Source Files
|
||
|
PLAT_R16_SRCS = demo.c
|
||
|
|
||
|
PLAT_LINUX_SRCS := $(PLAT_R16_SRCS)
|
||
|
# gcc CFLAGS
|
||
|
|
||
|
PLAT_R16_CFLAGS := -I./ -I../include
|
||
|
PLAT_LINUX_CFLAGS := $(PLAT_R16_CFLAGS) -I/usr/include/dbus-1.0/ -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include/
|
||
|
PLAT_LINUX_CFLAGS += -I../linux32/inc/ -I../linux32/inc/cjson/ -I../linux32/inc/uthash/
|
||
|
|
||
|
#R16_LIBS := -lgobject-2.0 -lffi -lglib-2.0 -ldbus-1 -ldbus-glib-1 -luv
|
||
|
R16_LIBS := $(COMMON_R16_LIBS)
|
||
|
R16_LIBS += ./libuvdbus-r16.so ./libSRC.so
|
||
|
|
||
|
LINUX_LIBS := $(COMMON_LINUX_LIBS)
|
||
|
LINUX_LIBS += ./libuvdbus-linux.so
|
||
|
|
||
|
|
||
|
ifeq ($(PLAT_R16), TRUE)
|
||
|
DEPEND_LIB += ../Modules/voice/libSRC.so
|
||
|
USER_CLEAN_ITEMS += ./libSRC.so
|
||
|
endif
|
||
|
|
||
|
# this line must be at below of thus, because of...
|
||
|
include /opt/common/Makefile.cross
|
||
|
|
||
|
ifneq ($(MAKECMDGOALS), clean)
|
||
|
ifneq ($(MAKECMDGOALS), cleanall)
|
||
|
ifneq ($(notdir $(DEPEND_LIB)), $(wildcard $(DEPEND_LIB)))
|
||
|
$(shell $(CP) $(DEPEND_LIB) ./)
|
||
|
endif
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
ifeq ($(MAKECMDGOALS), )
|
||
|
$(shell find ./ -name $(TARGET)-*.exe -delete)
|
||
|
else
|
||
|
ifeq ($(MAKECMDGOALS), all)
|
||
|
$(shell find ./ -name "$(TARGET)-*.exe" -delete)
|
||
|
endif
|
||
|
endif
|