diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-06-06 01:22:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:41 -0500 |
commit | 8ee772712c1a81f0490bcabc6843efd8e2527305 (patch) | |
tree | df2e7320c0083d9e9fbfaf8a6d6382ccff0866b9 /source4/build/smb_build/config_mk.pm | |
parent | c8b8212a83c43e6629432dc33402c3897a253493 (diff) | |
download | samba-8ee772712c1a81f0490bcabc6843efd8e2527305.tar.gz samba-8ee772712c1a81f0490bcabc6843efd8e2527305.tar.bz2 samba-8ee772712c1a81f0490bcabc6843efd8e2527305.zip |
r7315: Add support for custom makefile targets, e.g.:
[TARGET::FOOBAR]
CMD = make bla
(This used to be commit 65600536b614e4cc1449488fa3297c1e6a2e4053)
Diffstat (limited to 'source4/build/smb_build/config_mk.pm')
-rw-r--r-- | source4/build/smb_build/config_mk.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/build/smb_build/config_mk.pm b/source4/build/smb_build/config_mk.pm index d298fe68ee..2df5df94f2 100644 --- a/source4/build/smb_build/config_mk.pm +++ b/source4/build/smb_build/config_mk.pm @@ -24,7 +24,8 @@ my %attribute_types = ( "MINOR_VERSION" => "string", "RELEASE_VERSION" => "string", "ENABLE" => "bool", - "TARGET_CFLAGS" => "list" + "TARGET_CFLAGS" => "list", + "CMD" => "string" ); ########################################################### |