Skip to content

Commit

Permalink
Remove unnecessary -t from Makefile
Browse files Browse the repository at this point in the history
Based on the patch made to the Makefile done for OpenBSD:
<https://marc.info/?l=openbsd-ports&m=171628246015597&w=2>
  • Loading branch information
tiffany352 committed May 22, 2024
1 parent dce8c4d commit c0aadc4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,18 @@ htmldoc:
$(ASCIIDOCTOR) $(HTMLFLAGS) $(srcdir)/docs/rink-dates.5.adoc

installbin:
$(INSTALL) -Dm 0755 target/release/rink -t $(bindir)
$(INSTALL) -Dm 0755 target/release/rink $(bindir)

installman:
$(INSTALL) -Dm 0644 build/rink.1 -t $(man1dir)
$(INSTALL) -Dm 0644 build/rink.5 -t $(man5dir)
$(INSTALL) -Dm 0644 build/rink.7 -t $(man7dir)
$(INSTALL) -Dm 0644 build/rink-defs.5 -t $(man5dir)
$(INSTALL) -Dm 0644 build/rink-dates.5 -t $(man5dir)
$(INSTALL) -Dm 0644 build/rink.1 $(man1dir)
$(INSTALL) -Dm 0644 build/rink.5 $(man5dir)
$(INSTALL) -Dm 0644 build/rink.7 $(man7dir)
$(INSTALL) -Dm 0644 build/rink-defs.5 $(man5dir)
$(INSTALL) -Dm 0644 build/rink-dates.5 $(man5dir)

installfiles:
$(INSTALL) -Dm 0644 $(srcdir)/core/definitions.units -t $(datadir)/rink
$(INSTALL) -Dm 0644 $(srcdir)/core/datepatterns.txt -t $(datadir)/rink
$(INSTALL) -Dm 0644 $(srcdir)/core/currency.units -t $(datadir)/rink
$(INSTALL) -Dm 0644 $(srcdir)/core/definitions.units $(datadir)/rink
$(INSTALL) -Dm 0644 $(srcdir)/core/datepatterns.txt $(datadir)/rink
$(INSTALL) -Dm 0644 $(srcdir)/core/currency.units $(datadir)/rink

install: installbin installman installfiles

0 comments on commit c0aadc4

Please sign in to comment.