diff options
author | shemminger <shemminger> | 2004-04-07 23:18:04 +0000 |
---|---|---|
committer | shemminger <shemminger> | 2004-04-07 23:18:04 +0000 |
commit | 99274cbbd7c2fc8ed0791119fbba2765da29c0c5 (patch) | |
tree | 297c5e3a737d6c86340166e6aaa6c73118562fa1 /doc | |
parent | 61335e2eb53a2792e8e24bc29c758c31ebc87fe5 (diff) | |
download | android_external_brctl-99274cbbd7c2fc8ed0791119fbba2765da29c0c5.tar.gz android_external_brctl-99274cbbd7c2fc8ed0791119fbba2765da29c0c5.tar.bz2 android_external_brctl-99274cbbd7c2fc8ed0791119fbba2765da29c0c5.zip |
Changes for 0.9.8
- cleanup dependicies
- allow 4k ports
- don't fetch info till needed.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/doc/Makefile b/doc/Makefile index 67e38bb..011b86e 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,5 +1,21 @@ -all: FAQ HOWTO PROJECTS RPM-GPG-KEY TODO + +DESTDIR= +KERNEL_HEADERS=-I/usr/src/linux/include + +INSTALL=install -s + +prefix=/usr/local +exec_prefix=${prefix} +bindir=${exec_prefix}/bin +sbindir=${exec_prefix}/sbin +mandir=${prefix}/man + +SUBDIRS=libbridge brctl + +all: clean: - rcsclean * - rm -f *~ + +install: + mkdir -p $(DESTDIR)$(mandir)/man8 + install -m 644 brctl.8 $(DESTDIR)$(mandir)/man8 |