[11/20]tgt-pal/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:
Huang Rui 2020-01-18 14:37:20 +08:00
parent d7e1df5638
commit 1313722438
1 changed files with 4 additions and 3 deletions

View File

@ -80,12 +80,13 @@ endif
pal.tgt: $O $(TGTDEPLIBS)
$(CC) @shared@ $(LDFLAGS) -o $@ $O $(TGTLDFLAGS) -lipal
install: all installdirs $(libdir)/ivl/pal.tgt
install: all installdirs installfiles
$(libdir)/ivl/pal.tgt: ./pal.tgt
F = ./pal.tgt
installfiles: $(F) installdirs
$(INSTALL_PROGRAM) ./pal.tgt "$(DESTDIR)$(libdir)/ivl/pal.tgt"
installdirs: $(srcdir)/../mkinstalldirs
$(srcdir)/../mkinstalldirs "$(DESTDIR)/$(libdir)/ivl"