diff options
author | Taylor Holberton <taylorcholberton@gmail.com> | 2016-11-24 12:13:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-24 12:13:58 -0500 |
commit | f42051ce4de1a3b2655c2cab778338fe66ee9580 (patch) | |
tree | d043b214242fb78a37de35f04c7bcb76f8a2634a /Makefile | |
parent | ad4d7d706c6c0b8e4233446fa545128af6c73002 (diff) | |
parent | bd7ce64996ef45a45cc571a17c399d889d72a813 (diff) |
Merge pull request #88 from dawagner/fix-includes-install-path
Fix install path of include files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -2,13 +2,11 @@ export DESTDIR ?= export PREFIX ?= /usr/local export CROSS_COMPILE = -export INCDIR ?= $(PREFIX)/include +export INCDIR ?= $(PREFIX)/include/tinyalsa export LIBDIR ?= $(PREFIX)/lib export BINDIR ?= $(PREFIX)/bin export MANDIR ?= $(PREFIX)/share/man -INCDIR ?= $(PREFIX)/include - .PHONY: all all: $(MAKE) -C src @@ -23,7 +21,7 @@ clean: .PHONY: install install: - install -d $(DESTDIR)$(INCDIR)/tinyalsa + install -d $(DESTDIR)$(INCDIR)/ install include/tinyalsa/pcm.h $(DESTDIR)$(INCDIR)/ install include/tinyalsa/mixer.h $(DESTDIR)$(INCDIR)/ install include/tinyalsa/asoundlib.h $(DESTDIR)$(INCDIR)/ |