Skip to content

Commit

Permalink
Merge pull request #929 from libretro/make-install-wildcard
Browse files Browse the repository at this point in the history
make: Clean up make install usage
  • Loading branch information
RobLoach authored Oct 6, 2023
2 parents 37f4295 + 7eb4055 commit 793d450
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ all:

install:
for driver in android dinput hid linuxraw mfi parport qnx sdl2 udev x xinput; do \
install -Dm644 -t $(DESTDIR)$(INSTALLDIR)/$$driver $$driver/*.cfg; \
for file in $$driver/*.cfg; do \
install -Dm644 -t $(DESTDIR)$(INSTALLDIR)/$$driver "$$file"; \
done \
done
install -Dm644 -t $(DESTDIR)$(DOC_DIR) COPYING README.md retropad_layout.png

Expand Down

0 comments on commit 793d450

Please sign in to comment.