[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Makefile between version 1.386 and 1.389

version 1.386, 2011/12/07 11:52:36 version 1.389, 2011/12/10 11:00:00
Line 35  STATIC   = -static
Line 35  STATIC   = -static
 CFLAGS          += -g -DHAVE_CONFIG_H -DVERSION="\"$(VERSION)\""  CFLAGS          += -g -DHAVE_CONFIG_H -DVERSION="\"$(VERSION)\""
 CFLAGS          += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings  CFLAGS          += -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
 PREFIX           = /usr/local  PREFIX           = /usr/local
   WWWPREFIX        = /var/www
   HTDOCDIR         = $(WWWPREFIX)/htdocs
   CGIBINDIR        = $(WWWPREFIX)/cgi-bin
 BINDIR           = $(PREFIX)/bin  BINDIR           = $(PREFIX)/bin
 INCLUDEDIR       = $(PREFIX)/include/mandoc  INCLUDEDIR       = $(PREFIX)/include/mandoc
 LIBDIR           = $(PREFIX)/lib/mandoc  LIBDIR           = $(PREFIX)/lib/mandoc
Line 59  DBLN   = llib-lapropos.ln llib-lmandocdb.ln llib-lman.
Line 62  DBLN   = llib-lapropos.ln llib-lmandocdb.ln llib-lman.
 all: mandoc preconv demandoc $(DBBIN)  all: mandoc preconv demandoc $(DBBIN)
   
 SRCS             = Makefile \  SRCS             = Makefile \
                      TODO \
                    apropos.1 \                     apropos.1 \
                    apropos.c \                     apropos.c \
                      apropos_db.c \
                      apropos_db.h \
                    arch.c \                     arch.c \
                    arch.in \                     arch.in \
                    att.c \                     att.c \
                    att.in \                     att.in \
                      catman.8 \
                      catman.c \
                      cgi.c \
                    chars.c \                     chars.c \
                    chars.in \                     chars.in \
                    compat_getsubopt.c \                     compat_getsubopt.c \
Line 72  SRCS   = Makefile \
Line 81  SRCS   = Makefile \
                    compat_strlcpy.c \                     compat_strlcpy.c \
                    config.h.post \                     config.h.post \
                    config.h.pre \                     config.h.pre \
                    demandoc.c \  
                    demandoc.1 \                     demandoc.1 \
                      demandoc.c \
                    eqn.7 \                     eqn.7 \
                    eqn.c \                     eqn.c \
                    eqn_html.c \                     eqn_html.c \
Line 92  SRCS   = Makefile \
Line 101  SRCS   = Makefile \
                    libroff.h \                     libroff.h \
                    main.c \                     main.c \
                    main.h \                     main.h \
                    man.h \  
                    man.7 \                     man.7 \
                    man.c \                     man.c \
                    man.cgi.7 \                     man.cgi.7 \
                      man.cgi.css \
                      man.h \
                    man_hash.c \                     man_hash.c \
                    man_html.c \                     man_html.c \
                    man_macro.c \                     man_macro.c \
Line 105  SRCS   = Makefile \
Line 115  SRCS   = Makefile \
                    mandoc.3 \                     mandoc.3 \
                    mandoc.c \                     mandoc.c \
                    mandoc.h \                     mandoc.h \
                      mandoc_char.7 \
                    mandocdb.8 \                     mandocdb.8 \
                    mandocdb.c \                     mandocdb.c \
                    mandocdb.h \                     mandocdb.h \
                    mandoc_char.7 \  
                    manpath.c \                     manpath.c \
                    manpath.h \                     manpath.h \
                    catman.c \  
                    catman.8 \  
                    mdoc.h \  
                    mdoc.7 \                     mdoc.7 \
                    mdoc.c \                     mdoc.c \
                      mdoc.h \
                    mdoc_argv.c \                     mdoc_argv.c \
                    mdoc_hash.c \                     mdoc_hash.c \
                    mdoc_html.c \                     mdoc_html.c \
Line 131  SRCS   = Makefile \
Line 139  SRCS   = Makefile \
                    preconv.c \                     preconv.c \
                    predefs.in \                     predefs.in \
                    read.c \                     read.c \
                      regress \
                    roff.7 \                     roff.7 \
                    roff.c \                     roff.c \
                    st.c \                     st.c \
Line 154  SRCS   = Makefile \
Line 163  SRCS   = Makefile \
                    test-strptime.c \                     test-strptime.c \
                    tree.c \                     tree.c \
                    vol.c \                     vol.c \
                    vol.in                     vol.in \
                      whatis.1
   
 LIBMAN_OBJS      = man.o \  LIBMAN_OBJS      = man.o \
                    man_hash.o \                     man_hash.o \
Line 343  INDEX_MANS  = apropos.1.html \
Line 353  INDEX_MANS  = apropos.1.html \
                    mandoc.1.ps \                     mandoc.1.ps \
                    mandoc.1.pdf \                     mandoc.1.pdf \
                    mandoc.1.txt \                     mandoc.1.txt \
                      whatis.1.html \
                      whatis.1.xhtml \
                      whatis.1.ps \
                      whatis.1.pdf \
                      whatis.1.txt \
                    mandoc.3.html \                     mandoc.3.html \
                    mandoc.3.xhtml \                     mandoc.3.xhtml \
                    mandoc.3.ps \                     mandoc.3.ps \
Line 409  clean:
Line 424  clean:
         rm -f llib-lmandocdb.ln $(MANDOCDB_LNS)          rm -f llib-lmandocdb.ln $(MANDOCDB_LNS)
         rm -f preconv $(PRECONV_OBJS)          rm -f preconv $(PRECONV_OBJS)
         rm -f llib-lpreconv.ln $(PRECONV_LNS)          rm -f llib-lpreconv.ln $(PRECONV_LNS)
         rm -f apropos $(APROPOS_OBJS)          rm -f apropos whatis $(APROPOS_OBJS)
         rm -f llib-lapropos.ln $(APROPOS_LNS)          rm -f llib-lapropos.ln $(APROPOS_LNS)
         rm -f man.cgi $(CGI_OBJS)          rm -f man.cgi $(CGI_OBJS)
         rm -f llib-lman.cgi.ln $(CGI_LNS)          rm -f llib-lman.cgi.ln $(CGI_LNS)
Line 444  install: all
Line 459  install: all
         $(INSTALL_MAN) mandoc.3 $(DESTDIR)$(MANDIR)/man3          $(INSTALL_MAN) mandoc.3 $(DESTDIR)$(MANDIR)/man3
         $(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 $(DESTDIR)$(MANDIR)/man7          $(INSTALL_MAN) man.7 mdoc.7 roff.7 eqn.7 tbl.7 mandoc_char.7 $(DESTDIR)$(MANDIR)/man7
         $(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR)          $(INSTALL_DATA) example.style.css $(DESTDIR)$(EXAMPLEDIR)
   
   installcgi: all
           mkdir -p $(DESTDIR)$(CGIBINDIR)
           mkdir -p $(DESTDIR)$(HTDOCDIR)
           $(INSTALL_PROGRAM) man.cgi $(DESTDIR)$(CGIBINDIR)
           $(INSTALL_DATA) example.style.css $(DESTDIR)$(HTDOCDIR)/man.css
           $(INSTALL_DATA) man.cgi.css $(DESTDIR)$(HTDOCDIR)
   
 installwww: www  installwww: www
         mkdir -p $(PREFIX)/snapshots          mkdir -p $(PREFIX)/snapshots

Legend:
Removed from v.1.386  
changed lines
  Added in v.1.389

CVSweb