[10/20]tgt-pcb/Makefile.in: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
b5a44195ff
commit
d7e1df5638
|
|
@ -105,18 +105,17 @@ endif
|
|||
pcb.tgt: $O $(TGTDEPLIBS)
|
||||
$(CXX) @shared@ $(LDFLAGS) -o $@ $O $(TGTLDFLAGS)
|
||||
|
||||
install: all installdirs $(libdir)/ivl$(suffix)/pcb.tgt $(INSTALL_DOC) $(libdir)/ivl$(suffix)/pcb.conf $(libdir)/ivl$(suffix)/pcb-s.conf
|
||||
install: all installdirs installfiles
|
||||
|
||||
$(libdir)/ivl$(suffix)/pcb.tgt: ./pcb.tgt
|
||||
F = ./pcb.tgt \
|
||||
$(srcdir)/pcb.conf \
|
||||
$(srcdir)/pcb-s.conf
|
||||
|
||||
installfiles: $(F) installdirs
|
||||
$(INSTALL_PROGRAM) ./pcb.tgt "$(DESTDIR)$(libdir)/ivl$(suffix)/pcb.tgt"
|
||||
|
||||
$(libdir)/ivl$(suffix)/pcb.conf: $(srcdir)/pcb.conf
|
||||
$(INSTALL_DATA) $(srcdir)/pcb.conf "$(DESTDIR)$(libdir)/ivl$(suffix)/pcb.conf"
|
||||
|
||||
$(libdir)/ivl$(suffix)/pcb-s.conf: $(srcdir)/pcb-s.conf
|
||||
$(INSTALL_DATA) $(srcdir)/pcb-s.conf "$(DESTDIR)$(libdir)/ivl$(suffix)/pcb-s.conf"
|
||||
|
||||
|
||||
installdirs: $(srcdir)/../mkinstalldirs
|
||||
$(srcdir)/../mkinstalldirs "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)/ivl$(suffix)"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue