summaryrefslogtreecommitdiff
path: root/dmake/Makefile.in
diff options
context:
space:
mode:
authorKen Foskey <waratah@openoffice.org>2002-10-03 11:29:49 +0000
committerKen Foskey <waratah@openoffice.org>2002-10-03 11:29:49 +0000
commitfa2027fb0ac817455bb289345c369f8dbc378ee2 (patch)
treea3f1d877495079497766073f4f3f68000dfbd423 /dmake/Makefile.in
parentcd4c8bcdb73c5e3db92bd4333e40cfb20b34d6a0 (diff)
dmake: This is a reworked version of the configure process, without automake and aclocal
Diffstat (limited to 'dmake/Makefile.in')
-rwxr-xr-xdmake/Makefile.in19
1 files changed, 11 insertions, 8 deletions
diff --git a/dmake/Makefile.in b/dmake/Makefile.in
index c5baacf48b4d..c423f4e25504 100755
--- a/dmake/Makefile.in
+++ b/dmake/Makefile.in
@@ -17,9 +17,9 @@
#
# $RCSfile: Makefile.in,v $
#
-# $Revision: 1.5 $
+# $Revision: 1.6 $
#
-# last change: $Author: waratah $ $Date: 2002-10-02 13:42:11 $
+# last change: $Author: waratah $ $Date: 2002-10-03 12:29:43 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -127,6 +127,7 @@ DEPDIR = @DEPDIR@
EXEEXT = @EXEEXT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LN_S = @LN_S@
+MAINT = @MAINT@
OBJEXT = @OBJEXT@
OS_VERSION = @OS_VERSION@
PACKAGE = @PACKAGE@
@@ -157,7 +158,7 @@ CFLAGS = -O
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-CONFIG_CLEAN_FILES = dmakeroot.h
+CONFIG_CLEAN_FILES = startup/unix/cygwin/Makefile dmakeroot.h
bin_PROGRAMS = dmake$(EXEEXT)
PROGRAMS = $(bin_PROGRAMS)
@@ -209,21 +210,23 @@ all: all-recursive
.SUFFIXES:
.SUFFIXES: .c .o .obj
-$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
cd $(top_srcdir) && \
$(AUTOMAKE) --foreign Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) && \
CONFIG_HEADERS= CONFIG_LINKS= \
CONFIG_FILES=$@ $(SHELL) ./config.status
$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
-$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
+$(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
cd $(srcdir) && $(AUTOCONF)
-$(ACLOCAL_M4): configure.in acinclude.m4
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in acinclude.m4
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
+startup/unix/cygwin/Makefile: $(top_builddir)/config.status $(top_srcdir)/startup/unix/cygwin/Makefile.in
+ cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= CONFIG_LINKS= $(SHELL) ./config.status
dmakeroot.h: $(top_builddir)/config.status dmakeroot.h.in
cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= CONFIG_LINKS= $(SHELL) ./config.status
install-binPROGRAMS: $(bin_PROGRAMS)
@@ -400,7 +403,7 @@ GZIP_ENV = --best
distdir: $(DISTFILES)
-chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir)
mkdir $(distdir)
- $(mkinstalldirs) $(distdir)/.
+ $(mkinstalldirs) $(distdir)/. $(distdir)/startup/unix/cygwin
@for file in $(DISTFILES); do \
if test -f $$file; then d=.; else d=$(srcdir); fi; \
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \