diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-01-23 05:17:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-01-23 05:17:07 +0000 |
commit | e3a2fd8499eb887ee794ff8f6d0ecfa39e160b05 (patch) | |
tree | c0d09148e3ed364501b75793b3118f68dcf317c5 /Makefile.in | |
parent | Adding upstream version 1.3. (diff) | |
download | lzd-e3a2fd8499eb887ee794ff8f6d0ecfa39e160b05.tar.xz lzd-e3a2fd8499eb887ee794ff8f6d0ecfa39e160b05.zip |
Adding upstream version 1.4.upstream/1.4
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index ced714d..120a41b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -24,15 +24,18 @@ $(progname) : $(objs) %.o : %.cc $(CXX) $(CPPFLAGS) $(CXXFLAGS) -DPROGVERSION=\"$(pkgversion)\" -c -o $@ $< -$(objs) : Makefile +# prevent 'make' from trying to remake source files +$(VPATH)/configure $(VPATH)/Makefile.in $(VPATH)/doc/$(pkgname).texi : ; +%.h %.cc : ; +$(objs) : Makefile doc : info : $(VPATH)/doc/$(pkgname).info $(VPATH)/doc/$(pkgname).info : $(VPATH)/doc/$(pkgname).texi - cd $(VPATH)/doc && makeinfo $(pkgname).texi + cd $(VPATH)/doc && $(MAKEINFO) $(pkgname).texi man : $(VPATH)/doc/$(progname).1 |