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

Diff for /mandoc/Makefile between version 1.395.2.20 and 1.395.2.21

version 1.395.2.20, 2014/08/05 00:42:53 version 1.395.2.21, 2014/08/05 01:07:42
Line 19  VERSION   = 1.12.4
Line 19  VERSION   = 1.12.4
   
 # === USER SETTINGS ====================================================  # === USER SETTINGS ====================================================
   
   # --- user settings relevant for all builds ----------------------------
   
 # Specify this if you want to hard-code the operating system to appear  # Specify this if you want to hard-code the operating system to appear
 # in the lower-left hand corner of -mdoc manuals.  # in the lower-left hand corner of -mdoc manuals.
 #  #
Line 32  VERSION   = 1.12.4
Line 34  VERSION   = 1.12.4
 #  #
 CFLAGS          += -DUSE_WCHAR  CFLAGS          += -DUSE_WCHAR
   
 # If your system has manpath(1), uncomment this.  This is most any  
 # system that's not OpenBSD or NetBSD.  If uncommented, apropos(1),  
 # and mandocdb(8) will popen(3) manpath(1) to get the MANPATH  
 # variable.  
 #CFLAGS         += -DUSE_MANPATH  
   
 CFLAGS          += -g -DHAVE_CONFIG_H  CFLAGS          += -g -DHAVE_CONFIG_H
 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  
 BINDIR           = $(PREFIX)/bin  BINDIR           = $(PREFIX)/bin
 INCLUDEDIR       = $(PREFIX)/include/mandoc  INCLUDEDIR       = $(PREFIX)/include/mandoc
 LIBDIR           = $(PREFIX)/lib/mandoc  LIBDIR           = $(PREFIX)/lib/mandoc
 MANDIR           = $(PREFIX)/man  MANDIR           = $(PREFIX)/man
 EXAMPLEDIR       = $(PREFIX)/share/examples/mandoc  EXAMPLEDIR       = $(PREFIX)/share/examples/mandoc
   
 INSTALL          = install  INSTALL          = install
 INSTALL_PROGRAM  = $(INSTALL) -m 0755  INSTALL_PROGRAM  = $(INSTALL) -m 0755
 INSTALL_DATA     = $(INSTALL) -m 0444  INSTALL_DATA     = $(INSTALL) -m 0444
Line 55  INSTALL_LIB  = $(INSTALL) -m 0644
Line 50  INSTALL_LIB  = $(INSTALL) -m 0644
 INSTALL_SOURCE   = $(INSTALL) -m 0644  INSTALL_SOURCE   = $(INSTALL) -m 0644
 INSTALL_MAN      = $(INSTALL_DATA)  INSTALL_MAN      = $(INSTALL_DATA)
   
   # --- user settings related to database support ------------------------
   
   # If you want to build without database support, for example to avoid
   # the dependency on Berkeley DB, comment the following line.
   #
   DBBIN            = apropos mandocdb whatis
   
 # Non-BSD systems (Linux, etc.) need -ldb to compile mandocdb and  # Non-BSD systems (Linux, etc.) need -ldb to compile mandocdb and
 # apropos.  # apropos.
 # However, if you don't have -ldb at all (or it's not native), then  
 # comment out apropos and mandocdb.  
 #  #
 #DBLIB           = -ldb  #DBLIB           = -ldb
 DBBIN            = apropos mandocdb whatis  
   # If your system has manpath(1), uncomment this.  This is most any
   # system that's not OpenBSD or NetBSD.  If uncommented, apropos(1)
   # and mandocdb(8) will use manpath(1) to get the MANPATH variable.
   #
   #CFLAGS         += -DUSE_MANPATH
   
   WWWPREFIX        = /var/www
   HTDOCDIR         = $(WWWPREFIX)/htdocs
   
 # === END OF USER SETTINGS =============================================  # === END OF USER SETTINGS =============================================
   

Legend:
Removed from v.1.395.2.20  
changed lines
  Added in v.1.395.2.21

CVSweb