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''' out.write(r'''
default: usrp default: usrp
.PHONY: cn
cn: \ cn: \
osmo-ggsn \ osmo-ggsn \
osmo-hlr \ osmo-hlr \
@ -316,11 +317,13 @@ cn: \
osmo-smlc \ osmo-smlc \
$(NULL) $(NULL)
.PHONY: cn-bsc
cn-bsc: \ cn-bsc: \
cn \ cn \
osmo-bsc \ osmo-bsc \
$(NULL) $(NULL)
.PHONY: usrp
usrp: \ usrp: \
cn-bsc \ cn-bsc \
osmo-bts \ osmo-bts \