[5/20]tgt-vlog95:Remove useless $(INSTALL_DOC)

fix install timestamp check and Remove useless $(INSTALL_DOC)

Fix bug: https://bugs.gentoo.org/705412
Fix bug: https://github.com/gentoo/gentoo/pull/14096
Related: https://github.com/steveicarus/iverilog/pull/294

Signed-off-by: Huang Rui <[email protected]>
This commit is contained in:
Huang Rui
2020-02-12 22:08:40 +08:00
parent bd130786ff
commit c1229b7565
+6 -7
View File
@@ -81,18 +81,17 @@ endif
vlog95.tgt: $O $(TGTDEPLIBS)
$(CC) @shared@ $(LDFLAGS) -o $@ $O -lm $(TGTLDFLAGS)
install: all installdirs $(libdir)/ivl$(suffix)/vlog95.tgt $(INSTALL_DOC) $(libdir)/ivl$(suffix)/vlog95.conf $(libdir)/ivl$(suffix)/vlog95-s.conf
install: all installdirs installfiles
$(libdir)/ivl$(suffix)/vlog95.tgt: ./vlog95.tgt
F = ./vlog95.tgt \
$(srcdir)/vlog95.conf \
$(srcdir)/vlog95-s.conf
installfiles: $(F) installdirs
$(INSTALL_PROGRAM) ./vlog95.tgt "$(DESTDIR)$(libdir)/ivl$(suffix)/vlog95.tgt"
$(libdir)/ivl$(suffix)/vlog95.conf: $(srcdir)/vlog95.conf
$(INSTALL_DATA) $(srcdir)/vlog95.conf "$(DESTDIR)$(libdir)/ivl$(suffix)/vlog95.conf"
$(libdir)/ivl$(suffix)/vlog95-s.conf: $(srcdir)/vlog95-s.conf
$(INSTALL_DATA) $(srcdir)/vlog95-s.conf "$(DESTDIR)$(libdir)/ivl$(suffix)/vlog95-s.conf"
installdirs: $(srcdir)/../mkinstalldirs
$(srcdir)/../mkinstalldirs "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)/ivl$(suffix)"