summaryrefslogtreecommitdiff
path: root/i386/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'i386/Makefile.in')
-rw-r--r--i386/Makefile.in68
1 files changed, 68 insertions, 0 deletions
diff --git a/i386/Makefile.in b/i386/Makefile.in
new file mode 100644
index 0000000..d47bcc1
--- /dev/null
+++ b/i386/Makefile.in
@@ -0,0 +1,68 @@
+# Makefile for i386
+# Copyright 1999 Free Software Foundation, Inc.
+#
+# Permission to use, copy, modify and distribute this software and its
+# documentation is hereby granted, provided that both the copyright
+# notice and this permission notice appear in all copies of the
+# software, derivative works or modified versions, and any portions
+# thereof, and that both notices appear in supporting documentation.
+#
+# THE FREE SOFTWARE FOUNDATION ALLOWS FREE USE OF THIS SOFTWARE IN ITS
+# "AS IS" CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY
+# LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE
+# USE OF THIS SOFTWARE.
+
+
+
+
+# Variables from `configure'.
+srcdir=@srcdir@
+
+# Programs found by configure.
+LD = @LD@
+MAKE = @MAKE@
+
+# Rules. There are few rules because Makefrag does most things in i386.
+all: sysdep.o
+
+sysdep.o: linux/linux.o $(srcdir)/configure
+ rm -f $@
+ $(LD) -r -o $@ linux/linux.o
+
+linux/linux.o: linux
+ cd linux && $(MAKE) all
+
+clean:
+ rm -f sysdep.o
+ cd linux && $(MAKE) clean
+
+distclean: clean
+ cd linux && $(MAKE) distclean
+ rm -f config.status config.log Makefile
+
+mostlyclean: distclean
+ cd linux && $(MAKE) mostlyclean
+
+maintainer-clean: mostlyclean
+ rm -f $(srcdir)/configure
+ cd linux && $(MAKE) maintainer-clean
+
+install-headers:
+install-kernel:
+
+
+
+
+# Autoconf support
+
+$(srcdir)/configure: configure.in
+ cd $(srcdir) && autoconf
+
+Makefile: Makefile.in config.status
+ ./config.status
+
+config.status: configure
+ ./config.status --recheck
+
+vpath %.in $(srcdir)
+vpath configure $(srcdir)