mirror of https://gerrit.osmocom.org/osmo-dev
gen_makefile.py: reformat find cmds in Makefile
Change-Id: Ic2fad22fdbf0fec4abfaeae60b4ebd74563a9392changes/36/25736/1
parent
04f805ebe8
commit
505f60de3d
|
@ -167,8 +167,17 @@ def gen_make(proj, deps, configure_opts, jobs, make_dir, src_dir, build_dir, url
|
|||
return r'''
|
||||
### {proj} ###
|
||||
|
||||
{proj}_configure_files := $(shell find {src_proj} -name "Makefile.am" -or -name "*.in" -and -not -name "Makefile.in" -and -not -name "config.h.in" )
|
||||
{proj}_files := $(shell find {src_proj} -name "*.[hc]" -or -name "*.py" -or -name "*.cpp" -or -name "*.tpl" -or -name "*.map")
|
||||
{proj}_configure_files := $(shell find {src_proj} \
|
||||
-name "Makefile.am" \
|
||||
-or -name "*.in" \
|
||||
-and -not -name "Makefile.in" \
|
||||
-and -not -name "config.h.in" )
|
||||
{proj}_files := $(shell find {src_proj} \
|
||||
-name "*.[hc]" \
|
||||
-or -name "*.py" \
|
||||
-or -name "*.cpp" \
|
||||
-or -name "*.tpl" \
|
||||
-or -name "*.map")
|
||||
|
||||
.make.{proj}.clone:
|
||||
@echo -e "\n\n\n===== $@\n"
|
||||
|
|
Loading…
Reference in New Issue