# Makefile for the second extended file system programs man pages
#
# Copyright (C) 1993 Remy Card (card@masi.ibp.fr)
#
# This file can be redistributed under the terms of the GNU General
# Public License

SMANPAGES=	dirdump.8 e2fsck.8 mke2fs.8 mklost+found.8 tune2fs.8
UMANPAGES=	chattr.1 lsattr.1

all:

clean:

realclean clobber spotless:	clean

install:	$(MANPAGES)
	if [ -d $(SMANDIR) ]; then \
		cp $(SMANPAGES) $(SMANDIR); \
		ln -sf mke2fs.8 $(SMANDIR)/mkfs.ext2.8; \
		ln -sf e2fsck.8 $(SMANDIR)/fsck.ext2.8; \
	fi
	if [ -d $(UMANDIR) ]; then \
		cp $(UMANPAGES) $(UMANDIR); \
	fi

dep depend:
