]> git.sur5r.net Git - i3/i3status/commitdiff
Generate manpage in Makefile
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 12 Oct 2009 07:59:11 +0000 (09:59 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 12 Oct 2009 07:59:11 +0000 (09:59 +0200)
Makefile

index 2e9f93a053bbeb46b6caca79e936ad5b5d8a475f..78984f6275a40ff3272258c99054f7b67baef524 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -33,6 +33,8 @@ src/%.o: src/%.c
        @$(CC) $(CFLAGS) -c -o $@ $<
        @echo " CC $<"
 
+all: i3status manpage
+
 i3status: ${OBJS}
        @$(CC) -o $@ src/*.o *.o $(LDFLAGS)
        @echo " LD $@"
@@ -43,6 +45,9 @@ clean:
 distclean: clean
        rm -f i3status
 
+manpage:
+       make -C man
+
 install:
        install -m 755 -d $(DESTDIR)/usr/bin
        install -m 755 -d $(DESTDIR)/etc
@@ -57,5 +62,3 @@ release:
        find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|1\|h\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION} \;
        tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION}
        rm -rf i3status-${VERSION}
-
-all: i3status