Update of /cvsroot/kde-cygwin/kde-1.1.2/kdebase/admin
In directory usw-pr-cvs1:/tmp/cvs-serv25314/admin
Modified Files:
Makefile.common
Removed Files:
automoc
Log Message:
changed automoc to am_edit
Index: Makefile.common
===================================================================
RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdebase/admin/Makefile.common,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** Makefile.common 2001/05/19 21:22:35 1.1.1.1
--- Makefile.common 2001/06/13 12:31:19 1.2
***************
*** 15,23 ****
@echo "*** Building Makefile templates (step one)"
@automake
! @echo "*** Scanning for moc files"
! @perl admin/automoc
@echo "*** Building Makefile templates (step two)"
@autoconf
! @if grep "ac_kw foo" configure &>/dev/null; then perl -p -i -e "s/ac_kw foo/ac_kw int foo/" configure; fi
@echo "*** Creating date/time stamp"
@touch stamp-h.in
--- 15,23 ----
@echo "*** Building Makefile templates (step one)"
@automake
! @echo "*** Scanning for moc files and KDE tags"
! @perl admin/am_edit
@echo "*** Building Makefile templates (step two)"
@autoconf
! @if grep "ac_kw foo" configure >/dev/null; then cat configure | sed "s/ac_kw foo/ac_kw int foo/" > configure.tmp; mv configure.tmp configure ; fi
@echo "*** Creating date/time stamp"
@touch stamp-h.in
***************
*** 34,41 ****
autoheader; \
automake --foreign --include-deps; \
! perl admin/automoc; \
autoconf; \
! if grep "ac_kw foo" configure &>/dev/null; then perl -p -i -e "s/ac_kw foo/ac_kw int foo/" configure; fi ;\
! touch stamp-h.in; \
if test -d po; then \
LIST=`find ./po -name "*.po"`; \
--- 34,41 ----
autoheader; \
automake --foreign --include-deps; \
! perl admin/am_edit; \
autoconf; \
! if grep "ac_kw foo" configure >/dev/null; then cat configure | sed "s/ac_kw foo/ac_kw int foo/" > configure.tmp; mv configure.tmp configure ; fi \
! touch stamp-h.in; \
if test -d po; then \
LIST=`find ./po -name "*.po"`; \
***************
*** 104,105 ****
--- 104,107 ----
fi
@test -r SUBDIRS && mv SUBDIRS subdirs
+
+ .PHONY: cvs
\ No newline at end of file
--- automoc DELETED ---
|