[DEV-8362] Include program.mk in project root
If a "program.mk" exists in a project's root, it should be included in the Makefile. Co-Authored-By: Anthony Dalfonso <anthony.dalfonso@ryansg.com>master
parent
37a8fb29f0
commit
f7968c0513
|
@ -13,6 +13,10 @@ TAME developers: Add new changes under a "NEXT" heading as part of the
|
|||
commits that introduce the changes. To make a new release, run
|
||||
`tools/mkrelease`, which will handle updating the heading for you.
|
||||
|
||||
NEXT
|
||||
====
|
||||
- Optionally include a "program.mk" file if it is present in the project's root
|
||||
directory. This allows us to move program specific tasks outside of TAME.
|
||||
|
||||
v17.6.1 (2020-09-23)
|
||||
====================
|
||||
|
|
|
@ -344,3 +344,8 @@ me-a-sandwich:
|
|||
|| echo 'Make it yourself.'
|
||||
|
||||
FORCE: ;
|
||||
|
||||
# optionally include a "program.mk" file if it is
|
||||
# present in the project's root directory
|
||||
-include program.mk
|
||||
|
||||
|
|
Loading…
Reference in New Issue