makefile change

This commit is contained in:
2024-09-27 15:55:26 +08:00
parent e7b150bbd3
commit cd90d55d12
3 changed files with 8 additions and 8 deletions

View File

@@ -258,7 +258,7 @@ clean:
## indent Makefile.indent
##
##--------------------------------------
include Makefile.indent
include $(MAKE_INCLUDE)/Makefile.indent
indent:
@chmod 777 $(SRC_FULL_PATH)
@@ -272,7 +272,7 @@ indent:
## splint makefile.splint
##
##--------------------------------------
include Makefile.splint
include $(MAKE_INCLUDE)/Makefile.splint
SPLINT_FLAG_SWITCH ?= off
@@ -291,7 +291,7 @@ endif
## doc Makefile.doxygen
##
##--------------------------------------
include Makefile.doxygen
include $(MAKE_INCLUDE)/Makefile.doxygen
doc:
@chmod 777 $(SRC_FULL_PATH)
@@ -305,21 +305,21 @@ doc:
## backup Makefile.backup
##
##--------------------------------------
include Makefile.backup
include $(MAKE_INCLUDE)/Makefile.backup
##--------------------------------------
##
## cov Makefile.cov
##
##--------------------------------------
include Makefile.cov
include $(MAKE_INCLUDE)/Makefile.cov
##--------------------------------------
##
## usage Makefile.usage
##
##--------------------------------------
include Makefile.usage
include $(MAKE_INCLUDE)/Makefile.usage
##--------------------------------------
##

View File

@@ -86,7 +86,7 @@ POSTPROC_CMD =
CCFLAG_SWITCH = off
COVER_NEED = no
COVER_REPORT_PATH = ./output
MAKE_INCLUDE = $(HOME)/ems.git/include
MAKE_INCLUDE = ../../include
##---------------------------------------------------------------------##

View File

@@ -1,6 +1,6 @@
#!/bin/bash
projectDir=$(HOME)/ems.git
projectDir=`~/`
platDir=$(projectDir)/plat
platModuleList="8ecp aif bicc debug haepub iptrans isdn isup m2ua mgc mgcp mgc_v2 mtp3 pal public rtp sccp scf sip smpp snmp tcap xapp"
for mod in $platModuleList; do