Make make sct faster - alternate ways of doing it
This commit is contained in:
@ -169,8 +169,14 @@ config:
|
|||||||
xref: all
|
xref: all
|
||||||
python xref.py $(SUBLIBS) $(GHTTP_LIBS)
|
python xref.py $(SUBLIBS) $(GHTTP_LIBS)
|
||||||
|
|
||||||
sct:
|
sct1:
|
||||||
find . -name "*.sct" -exec python instrument/util/gen_sct.py {} \;
|
find . -name "*.sct" -exec python instrument/util/gen_sct.py {} \;
|
||||||
|
sct2:
|
||||||
|
python instrument/util/gen_sct.py `find . -name "*.sct"`
|
||||||
|
sct3:
|
||||||
|
find . -name "*.sct" | xargs python instrument/util/gen_sct.py
|
||||||
|
|
||||||
|
sct: | sct2
|
||||||
|
|
||||||
#TODO Add targets for other instruments
|
#TODO Add targets for other instruments
|
||||||
echidna: all
|
echidna: all
|
||||||
|
Reference in New Issue
Block a user