Modify Makefile to include man directory

master
Goldwyn Rodrigues 2009-01-21 13:22:49 -05:00 committed by Chris Mason
parent fc5a740b1c
commit 20da00318d
1 changed files with 9 additions and 2 deletions

View File

@ -30,7 +30,7 @@ endif
$(CC) $(DEPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c $<
all: version $(progs)
all: version $(progs) manpages
version:
bash version.sh
@ -68,10 +68,17 @@ quick-test: $(objects) quick-test.o
convert: $(objects) convert.o
gcc $(CFLAGS) -o btrfs-convert $(objects) convert.o -lext2fs $(LDFLAGS) $(LIBS)
manpages:
cd man; make
install-man:
cd man; make install
clean :
rm -f $(progs) cscope.out *.o .*.d btrfs-convert
cd man; make clean
install: $(progs)
install: $(progs) install-man
$(INSTALL) -m755 -d $(DESTDIR)$(bindir)
$(INSTALL) $(progs) $(DESTDIR)$(bindir)
if [ -e btrfs-convert ]; then $(INSTALL) btrfs-convert $(DESTDIR)$(bindir); fi