|
Revision 3289, 1.2 kB
(checked in by dreamforce2, 6 years ago)
|
|
Reverting for now.
It still does not work in some special cases. Will have to get more deep into this autmake/autoconf stuff first.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | |
|---|
| 2 | all: |
|---|
| 3 | @echo "This Makefile is only for the CVS repository" |
|---|
| 4 | @echo "This will be deleted before making the distribution" |
|---|
| 5 | @echo "" |
|---|
| 6 | @if test ! -d admin; then \ |
|---|
| 7 | echo "Please recheckout this module!" ;\ |
|---|
| 8 | echo "for cvs: use checkout once and after that update again" ;\ |
|---|
| 9 | exit 1 ;\ |
|---|
| 10 | fi |
|---|
| 11 | # We cannot use Makefile.common here because of am_edit |
|---|
| 12 | @echo "*** Concatenating configure tests into acinclude.m4" |
|---|
| 13 | @-rm -f acinclude.m4 |
|---|
| 14 | @$(MAKE) -f Makefile.am top_srcdir=. acinclude.m4 |
|---|
| 15 | @echo "*** Retrieving configure tests needed by configure.in" |
|---|
| 16 | @aclocal |
|---|
| 17 | @echo "*** Scanning for include statements" |
|---|
| 18 | @autoheader |
|---|
| 19 | @echo "*** Building Makefile templates (step one)" |
|---|
| 20 | @automake |
|---|
| 21 | @echo "*** Scanning for moc files " |
|---|
| 22 | @perl am_edit |
|---|
| 23 | @echo "*** Building Makefile templates (step two)" |
|---|
| 24 | @autoconf |
|---|
| 25 | @if grep "ac_kw foo" configure &>/dev/null; then perl -p -i -e "s/ac_kw foo/ac_kw int foo/" configure; fi |
|---|
| 26 | @perl -pi -e 'if (/\[\/\$$\]\*. INSTALL=/) { print $$_ ; $$_ = "\"\") ;;\n"; }' configure |
|---|
| 27 | @-rm -f config.cache config.h |
|---|
| 28 | @echo "*** Create date/time stamp" |
|---|
| 29 | @touch stamp-h.in |
|---|
| 30 | @echo "*** Finished" |
|---|
| 31 | @echo " Don't forget to run ./configure" |
|---|
| 32 | @echo " If you haven't done so in a while, run ./configure --help" |
|---|
| 33 | |
|---|
| 34 | .SILENT: |
|---|