diff options
author | H. Peter Anvin <hpa@zytor.com> | 1998-11-05 01:13:07 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 1998-11-05 01:13:07 +0000 |
commit | 8e618f6dcae16af89c1f997ea28818d2041be184 (patch) | |
tree | f356fae77e20f46703a89aa0aeec31885624ba4b /Makefile | |
parent | ca8319499268f07a02e95e0030ccbac8b59606ce (diff) | |
download | autofs3-8e618f6dcae16af89c1f997ea28818d2041be184.tar.gz autofs3-8e618f6dcae16af89c1f997ea28818d2041be184.tar.xz autofs3-8e618f6dcae16af89c1f997ea28818d2041be184.zip |
Various documentation changes to be more RedHat-friendly and less Debian-
centric; add .spec file from RedHat RPM (goal is to be able to at least
publish the SRPM file automatically); add pointer to HOWTO.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -6,8 +6,8 @@ -include Makefile.conf include Makefile.rules -.PHONY: daemon all kernel clean install install_kernel mrproper -.PHONY: distclean backup +.PHONY: daemon all kernel clean install install_kernel install_samples +.PHONY: mrproper distclean backup daemon: for i in $(SUBDIRS); do $(MAKE) -C $$i all; done @@ -27,6 +27,9 @@ install: install_kernel: if [ -d kernel ]; then $(MAKE) -C kernel install; fi +install_samples: + if [ -d samples ]; then $(MAKE) -C samples install; fi + mrproper distclean: clean find . -noleaf \( -name '*~' -o -name '#*' -o -name '*.orig' -o -name '*.rej' -o -name '*.old' \) -print0 | xargs -0 rm -f -rm -f include/config.h Makefile.conf config.* .autofs-* |