Blob Blame History Raw
*** doc/Makefile~	2018-08-25 21:58:09.000000000 -0500
--- doc/Makefile	2018-08-27 10:24:23.304422432 -0500
***************
*** 26,33 ****
  RTRIM  := sed -e 's/[ $(tab)]*$$//'
  DETAB2 := sed -e 's/$(tab)/  /g'
  
! BUILT_SOURCES = upx.1 upx.doc upx.html upx.man upx.ps upx.tex
! BUILT_SOURCES = upx.1 upx.doc upx.html
  
  
  ###
--- 26,33 ----
  RTRIM  := sed -e 's/[ $(tab)]*$$//'
  DETAB2 := sed -e 's/$(tab)/  /g'
  
! BUILT_SOURCES = upx.1 upx.doc upx.man upx.ps upx.tex
! BUILT_SOURCES = upx.1 upx.doc
  
  
  ###
***************
*** 46,52 ****
  ### rules
  ###
  
! .SUFFIXES: .1 .doc .html .man .pod .ps .tex
  
  %.1 : %.pod
  	pod2man --center=" " --release="$(PACKAGE) $(VERSION)" --date="$(VERSION_DATE)" $< | $(RTRIM) > $@
--- 46,52 ----
  ### rules
  ###
  
! .SUFFIXES: .1 .doc .man .pod .ps .tex
  
  %.1 : %.pod
  	pod2man --center=" " --release="$(PACKAGE) $(VERSION)" --date="$(VERSION_DATE)" $< | $(RTRIM) > $@
***************
*** 56,66 ****
  	pod2text < $< | $(RTRIM) > $@
  	test -s $@
  
- %.html : %.pod
- 	pod2html --noindex $< | $(RTRIM) | $(DETAB2) > $@
- 	@rm -f pod2htm*
- 	test -s $@
- 
  %.man : %.1
  	nroff -man $< | $(RTRIM) > $@
  	test -s $@
--- 56,61 ----