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

Diff for /mandoc/Makefile between version 1.537 and 1.540

version 1.537, 2021/09/19 15:05:39 version 1.540, 2021/09/21 11:04:40
Line 373  include Makefile.local
Line 373  include Makefile.local
   
 # === DEPENDENCY HANDLING ==============================================  # === DEPENDENCY HANDLING ==============================================
   
 all: mandoc demandoc soelim $(BUILD_TARGETS) Makefile.local  all: mandoc man demandoc soelim $(BUILD_TARGETS) Makefile.local
   
 install: base-install $(INSTALL_TARGETS)  install: base-install $(INSTALL_TARGETS)
   
Line 502  uninstall:
Line 502  uninstall:
         rm -f $(DESTDIR)$(INCLUDEDIR)/tbl.h          rm -f $(DESTDIR)$(INCLUDEDIR)/tbl.h
         [ ! -e $(DESTDIR)$(INCLUDEDIR) ] || rmdir $(DESTDIR)$(INCLUDEDIR)          [ ! -e $(DESTDIR)$(INCLUDEDIR) ] || rmdir $(DESTDIR)$(INCLUDEDIR)
   
 regress: all man  regress: all
         cd regress && ./regress.pl          cd regress && ./regress.pl
   
 regress-clean:  regress-clean:
Line 513  Makefile.local config.h: configure $(TESTSRCS)
Line 513  Makefile.local config.h: configure $(TESTSRCS)
         @exit 1          @exit 1
   
 libmandoc.a: $(MANDOC_COBJS) $(LIBMANDOC_OBJS)  libmandoc.a: $(MANDOC_COBJS) $(LIBMANDOC_OBJS)
         ar rs $@ $(MANDOC_COBJS) $(LIBMANDOC_OBJS)          $(AR) rs $@ $(MANDOC_COBJS) $(LIBMANDOC_OBJS)
   
 mandoc: $(MAIN_OBJS) libmandoc.a  mandoc: $(MAIN_OBJS) libmandoc.a
         $(CC) -o $@ $(LDFLAGS) $(MAIN_OBJS) libmandoc.a $(LDADD)          $(CC) -o $@ $(LDFLAGS) $(MAIN_OBJS) libmandoc.a $(LDADD)
Line 603  dist-install: dist
Line 603  dist-install: dist
 .h.h.html:  .h.h.html:
         highlight -I $< > $@          highlight -I $< > $@
   
 .1.1.html .3.3.html .5.5.html .7.7.html .8.8.html: mandoc  .1.1.html .3.3.html .5.5.html .7.7.html .8.8.html:
         mandoc -Thtml -Wwarning,stop \          ./mandoc -Thtml -Wwarning,stop \
                 -O 'style=/mandoc.css,man=/man/%N.%S.html;https://man.openbsd.org/%N.%S,includes=/includes/%I.html' \                  -O 'style=/mandoc.css,man=/man/%N.%S.html;https://man.openbsd.org/%N.%S,includes=/includes/%I.html' \
                 $< > $@                  $< > $@

Legend:
Removed from v.1.537  
changed lines
  Added in v.1.540

CVSweb