From 5a16f5ea98a432e3e95848da1ef8bd3b3fce1ffb Mon Sep 17 00:00:00 2001 From: gus knight Date: Wed, 29 Jul 2015 09:55:23 -0400 Subject: [PATCH] Fix Makefile. --- Makefile | 4 ++-- src/Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0605a74..1e8e63d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SRC_DIR = src .PHONY: default default: - $(MAKE) -C $(SRC_DIR) + $(MAKE) -C $(SRC_DIR) clean: - $(MAKE) -C $(SRC_DIR) clean + $(MAKE) -C $(SRC_DIR) clean diff --git a/src/Makefile b/src/Makefile index a098a76..1352bfd 100644 --- a/src/Makefile +++ b/src/Makefile @@ -364,7 +364,7 @@ tcc-doc.html: ../docs/tcc-doc.texi -makeinfo --no-split --html --number-sections -o $@ $< tcc.1: ../docs/tcc-doc.texi - -$(top_srcdir)/texi2pod.pl $< tcc.pod + -$(top_srcdir)/../docs/texi2pod.pl $< tcc.pod -pod2man --section=1 --center="Tiny C Compiler" --release=`cat $(top_srcdir)/../VERSION` tcc.pod > $@ tcc-doc.info: ../docs/tcc-doc.texi