aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in35
1 files changed, 35 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
new file mode 100644
index 0000000..6028513
--- /dev/null
+++ b/Makefile.in
@@ -0,0 +1,35 @@
+
+DESTDIR=
+KERNEL_HEADERS=-I@KERNEL_HEADERS@
+
+INSTALL=@INSTALL@
+
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+bindir=@bindir@
+sbindir=@sbindir@
+mandir=@mandir@
+distdir = $(PACKAGE)-$(VERSION)
+
+SUBDIRS=libbridge brctl doc
+
+all:
+ for x in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$x ; done
+
+clean:
+ for x in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$x clean ; done
+
+distclean: clean
+ rm -f config.log
+ rm -f config.cache
+ rm -f config.status
+
+maintainer-clean: distclean
+ rm -f Makefile
+ rm -f brctl/Makefile
+ rm -f libbridge/Makefile
+ rm -f doc/Makefile
+
+install:
+ for x in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$x install; done
+