[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 <vowstar@gmail.com>
This commit is contained in:
parent
bd130786ff
commit
c1229b7565
|
|
@ -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)"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue