2019-08-29 08:21:07 +00:00
|
|
|
include ../../Common/def.Makefile
|
|
|
|
|
2019-08-21 11:42:12 +00:00
|
|
|
# target name, the target name must have the same name of c source file
|
|
|
|
TARGET_NAME=configm
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# custom install dir
|
|
|
|
TARGET_BOX =
|
|
|
|
|
|
|
|
#debug mode or release mode
|
|
|
|
DEBUG = TRUE
|
|
|
|
|
|
|
|
PLAT_LINUX ?= TRUE
|
|
|
|
PLAT_ARM64 ?= TRUE
|
|
|
|
|
2019-08-29 08:21:07 +00:00
|
|
|
VPATH = ../user/configm/config-server \
|
|
|
|
../user/configm/config-server/netconfig/bridge \
|
|
|
|
../user/configm/config-server/web_config \
|
|
|
|
../user/configm/config-server/dhcp_config \
|
|
|
|
../user/configm/config-server/user_manager_config \
|
|
|
|
../user/configm/config-server/log_config
|
|
|
|
|
2019-08-21 11:42:12 +00:00
|
|
|
# source code
|
|
|
|
|
|
|
|
# set the source file, don't used .o because of ...
|
|
|
|
|
|
|
|
COMMON_SRCS = configserver.c \
|
|
|
|
netconfig/parsefile.c netconfig/ifconfig.c netconfig/netmain.c\
|
|
|
|
netconfig/ipconfig/ipconfig.c \
|
2019-08-29 08:21:07 +00:00
|
|
|
brconfig.c \
|
|
|
|
brnetlink.c \
|
|
|
|
libbridge/libbridge_if.c \
|
|
|
|
libbridge/libbridge_init.c \
|
|
|
|
libbridge/libbridge_devif.c\
|
|
|
|
config-adm/user_authpara.c \
|
|
|
|
config-adm/user_authfree.c \
|
|
|
|
authfree.c \
|
|
|
|
auth_parameters.c \
|
|
|
|
auth_recover_config.c \
|
|
|
|
user_recover_config.c \
|
|
|
|
user_group_config.c \
|
|
|
|
user_account_config.c \
|
|
|
|
usermanager-server/array_index.c \
|
|
|
|
usermanager-server/user_group.c \
|
|
|
|
usermanager-server/user_mod.c \
|
|
|
|
usermanager-server/user.c \
|
|
|
|
log_config_console.c \
|
|
|
|
log_config_init.c \
|
|
|
|
log_config_cm.c \
|
|
|
|
log_config_monitor.c \
|
|
|
|
log_config_remote.c \
|
|
|
|
log_config_file.c \
|
2019-08-26 08:28:51 +00:00
|
|
|
nat_config/natconfig.c \
|
|
|
|
vlan_config/vlan_config.c \
|
2019-08-29 08:21:07 +00:00
|
|
|
dhcp_client_config.c \
|
|
|
|
dhcp_dhcpd_lease.c \
|
|
|
|
dhcp_host_config.c \
|
|
|
|
dhcp_lib.c \
|
|
|
|
dhcp_relay_config.c \
|
|
|
|
dhcp_shared_network_config.c \
|
|
|
|
dhcp_subnet_config.c\
|
|
|
|
static_routing_config/static_routing_config.c
|
2019-08-28 09:47:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-08-21 11:42:12 +00:00
|
|
|
# MRS Board Source Files
|
|
|
|
PLAT_LINUX_SRCS = $(COMMON_SRCS)
|
|
|
|
PLAT_ARM64_SRCS = $(COMMON_SRCS)
|
|
|
|
|
|
|
|
|
2019-08-29 08:21:07 +00:00
|
|
|
COMMOM_CFLAGS = -I../user/configm/config-server/include \
|
|
|
|
-I../../Common -I../common/redismq -I../common/database \
|
|
|
|
-I../common/configm -I../common/rpc -I../common/rpc/hashtable \
|
|
|
|
-I../common/ulog -I../user/configm/config-server/netconfig/ \
|
|
|
|
-I../user/configm/config-server/netconfig/bridge/include
|
2019-08-21 11:42:12 +00:00
|
|
|
|
|
|
|
# gcc CFLAGS
|
|
|
|
PLAT_ARM64_CFLAGS := $(COMMOM_CFLAGS)
|
|
|
|
PLAT_LINUX_CFLAGS := $(COMMOM_CFLAGS)
|
|
|
|
|
|
|
|
PLAT_ARM64_LDFLAGS :=
|
|
|
|
PLAT_LINUX_LDFLAGS :=
|
|
|
|
|
2019-08-29 08:21:07 +00:00
|
|
|
COMMON_STD_LIB := -lpthread -lm -lcjson -levent -ljson-c -lhiredis -lodbc -lev -ldl
|
2019-08-21 11:42:12 +00:00
|
|
|
#gcc libs
|
2019-08-29 08:50:46 +00:00
|
|
|
PLAT_ARM64_LIBS := -lopenrpc-$(ARM64_OBJ_TARGET) -lnetlinku-$(ARM64_OBJ_TARGET) -lredismq-$(ARM64_OBJ_TARGET)
|
|
|
|
PLAT_ARM64_LIBS += -lulogapi-$(ARM64_OBJ_TARGET) -ldatabase-$(ARM64_OBJ_TARGET) $(COMMON_STD_LIB)
|
2019-08-21 11:42:12 +00:00
|
|
|
|
2019-08-29 08:50:46 +00:00
|
|
|
PLAT_LINUX_LIBS := -lopenrpc-$(LINUX_OBJ_TARGET) -lnetlinku-$(LINUX_OBJ_TARGET) -lredismq-$(LINUX_OBJ_TARGET)
|
|
|
|
PLAT_LINUX_LIBS += -lulogapi-$(LINUX_OBJ_TARGET) -ldatabase-$(LINUX_OBJ_TARGET) $(COMMON_STD_LIB)
|
2019-08-21 11:42:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
# this line must be at below of thus, because of...
|
|
|
|
include ../../Common/common.Makefile
|
|
|
|
|
|
|
|
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)-*.ko" -delete)
|
|
|
|
else
|
|
|
|
ifeq ($(MAKECMDGOALS), all)
|
|
|
|
$(shell find ./ -name "$(TARGET)-*.ko" -delete)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|