[4/20]tgt-vvp/Makefile.in:fix install timestamp check
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
0100c0bc5c
commit
bd130786ff
|
|
@ -104,17 +104,16 @@ stamp-vvp_config-h: $(srcdir)/vvp_config.h.in ../config.status
|
||||||
cd ..; ./config.status --header=tgt-vvp/vvp_config.h
|
cd ..; ./config.status --header=tgt-vvp/vvp_config.h
|
||||||
vvp_config.h: stamp-vvp_config-h
|
vvp_config.h: stamp-vvp_config-h
|
||||||
|
|
||||||
install: all installdirs $(libdir)/ivl$(suffix)/vvp.tgt $(libdir)/ivl$(suffix)/vvp.conf $(libdir)/ivl$(suffix)/vvp-s.conf
|
install: all installdirs installfiles
|
||||||
|
|
||||||
$(libdir)/ivl$(suffix)/vvp.tgt: ./vvp.tgt
|
F = ./vvp.tgt \
|
||||||
|
./vvp.conf \
|
||||||
|
./vvp-s.conf
|
||||||
|
|
||||||
|
installfiles: $(F) installdirs
|
||||||
$(INSTALL_PROGRAM) ./vvp.tgt "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp.tgt"
|
$(INSTALL_PROGRAM) ./vvp.tgt "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp.tgt"
|
||||||
|
$(INSTALL_DATA) ./vvp.conf "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp.conf"
|
||||||
$(libdir)/ivl$(suffix)/vvp.conf: vvp.conf
|
$(INSTALL_DATA) ./vvp-s.conf "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp-s.conf"
|
||||||
$(INSTALL_DATA) $< "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp.conf"
|
|
||||||
|
|
||||||
$(libdir)/ivl$(suffix)/vvp-s.conf: vvp-s.conf
|
|
||||||
$(INSTALL_DATA) $< "$(DESTDIR)$(libdir)/ivl$(suffix)/vvp-s.conf"
|
|
||||||
|
|
||||||
|
|
||||||
installdirs: $(srcdir)/../mkinstalldirs
|
installdirs: $(srcdir)/../mkinstalldirs
|
||||||
$(srcdir)/../mkinstalldirs "$(DESTDIR)$(libdir)/ivl$(suffix)"
|
$(srcdir)/../mkinstalldirs "$(DESTDIR)$(libdir)/ivl$(suffix)"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue