gen_makefile.py: mark convenience targets as phony

Change-Id: Idd7e485e17b178f1bf6feef5d30db57e6467267e
This commit is contained in:
Oliver Smith 2022-02-23 12:55:10 +01:00
parent 76f1647f00
commit ca0d2900be
1 changed files with 3 additions and 0 deletions

View File

@ -305,6 +305,7 @@ with open(output, 'w') as out:
out.write(r'''
default: usrp
.PHONY: cn
cn: \
osmo-ggsn \
osmo-hlr \
@ -316,11 +317,13 @@ cn: \
osmo-smlc \
$(NULL)
.PHONY: cn-bsc
cn-bsc: \
cn \
osmo-bsc \
$(NULL)
.PHONY: usrp
usrp: \
cn-bsc \
osmo-bts \