From 786e6c5bbf330a5dfad217e9326cb47b99e8008a Mon Sep 17 00:00:00 2001 From: agtuser Date: Fri, 27 Sep 2024 17:17:34 +0800 Subject: [PATCH] makefile --- plat/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plat/Makefile b/plat/Makefile index 804c366..75be1f4 100644 --- a/plat/Makefile +++ b/plat/Makefile @@ -4,15 +4,15 @@ PLATDIR = ../plat BINDIR = ../bin 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 +.PHONY: all $(PLATMODULELIST) clean + # default all all: $(PLATMODULELIST) # plat module list $(PLATMODULELIST): @echo "====================== make $@ =======================" - @cd $(PLATDIR)/$@ - $(MAKE) clean - $(MAKE) + @cd $(PLATDIR)/$@ && $(MAKE) @if [ $@ = "iptrans" ]; then \ ./generate_iptrans; \ cp -f ./iptrans $(BINDIR); \