From b09056820223f92a955a21999d4e80fcabc56b8d Mon Sep 17 00:00:00 2001 From: Taylor Holberton Date: Tue, 22 Nov 2016 09:49:47 -0800 Subject: using install command instead of cp and mkdir --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f1be254..5ae7c62 100644 --- a/Makefile +++ b/Makefile @@ -23,8 +23,11 @@ clean: .PHONY: install install: - mkdir -p $(DESTDIR)$(INCDIR)/tinyalsa - cp -Ru include/tinyalsa $(DESTDIR)$(INCDIR)/ + install -d $(DESTDIR)$(INCDIR)/tinyalsa + install include/tinyalsa/pcm.h $(DESTDIR)$(INCDIR)/ + install include/tinyalsa/mixer.h $(DESTDIR)$(INCDIR)/ + install include/tinyalsa/asoundlib.h $(DESTDIR)$(INCDIR)/ + install include/tinyalsa/version.h $(DESTDIR)$(INCDIR)/ $(MAKE) -C src install $(MAKE) -C utils install $(MAKE) -C doxygen install -- cgit v1.2.3