diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-06-04 13:57:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:35 -0500 |
commit | 5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0 (patch) | |
tree | a5464cdee1f79ca2fdb77c2cb1915d034134aaf9 /source4/build/m4/core.m4 | |
parent | 03cdfbe8ac68621d1dfa53164d095eb451793bc0 (diff) | |
download | samba-5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0.tar.gz samba-5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0.tar.bz2 samba-5296bd1b5107f321de0dc9b3a9c3f6ac5a4861f0.zip |
r7274: Move m4 files to seperate dir
(This used to be commit 0dda66f0e8e6ad37d731937af184a132bf3407b1)
Diffstat (limited to 'source4/build/m4/core.m4')
-rw-r--r-- | source4/build/m4/core.m4 | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/source4/build/m4/core.m4 b/source4/build/m4/core.m4 new file mode 100644 index 0000000000..215ca5195e --- /dev/null +++ b/source4/build/m4/core.m4 @@ -0,0 +1,67 @@ +dnl SMB Build Core System +dnl ------------------------------------------------------- +dnl Copyright (C) Stefan (metze) Metzmacher 2004 +dnl Copyright (C) Jelmer Vernooij 2004 +dnl Released under the GNU GPL +dnl ------------------------------------------------------- +dnl +dnl _SMB_BUILD_CORE( +dnl 1: outputfile +dnl ) + +dnl ####################################################### +dnl ### And now the implementation ### +dnl ####################################################### + +dnl _SMB_BUILD_CORE( +dnl 1: outputfile +dnl ) +AC_DEFUN([_SMB_BUILD_CORE], +[ + +$PERL -I$srcdir/build <<\_SMB_ACEOF +use strict; + +my %INPUT; + +use smb_build::main; + +########################################################### +### First we list all info from configure ### +########################################################### +# +######################################### +## Start Build Env +$SMB_INFO_BUILD_ENV +## End Build Env +######################################### +######################################### +## Start Ext Libs +$SMB_INFO_EXT_LIBS +## End Ext Libs +######################################### +######################################### +## Start Modules +$SMB_INFO_MODULES +## End Modules +######################################### +## Start Subsystems +$SMB_INFO_SUBSYSTEMS +## End Subsystems +######################################### +## Start Libraries +$SMB_INFO_LIBRARIES +## End Libraries +######################################### +## Start Binaries +$SMB_INFO_BINARIES +## End Binaries +######################################### + +$SMB_INFO_ENABLES + +smb_build_main(\%INPUT); + +_SMB_ACEOF + +]) |