[7/20]tgt-verilog/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
439d4405dd
commit
404e475022
|
|
@ -80,12 +80,14 @@ endif
|
|||
verilog.tgt: $O $(TGTDEPLIBS)
|
||||
$(CC) @shared@ $(LDFLAGS) -o $@ $O $(TGTLDFLAGS)
|
||||
|
||||
install: all installdirs $(libdir)/ivl/verilog.tgt \
|
||||
$(includedir)/vpi_user.h
|
||||
install: all installdirs installfiles
|
||||
|
||||
$(libdir)/ivl/verilog.tgt: ./verilog.tgt
|
||||
F = ./verilog.tgt \
|
||||
$(srcdir)/vpi_user.h
|
||||
|
||||
installfiles: $(F) installdirs
|
||||
$(INSTALL_PROGRAM) ./verilog.tgt "$(DESTDIR)$(libdir)/ivl/verilog.tgt"
|
||||
|
||||
$(INSTALL_DATA) $(srcdir)/vpi_user.h "$(DESTDIR)$(includedir)/vpi_user.h"
|
||||
|
||||
installdirs: $(srcdir)/../mkinstalldirs
|
||||
$(srcdir)/../mkinstalldirs "$(DESTDIR)$(libdir)/ivl"
|
||||
|
|
|
|||
Loading…
Reference in New Issue