diff options
author | Taylor Holberton <taylorcholberton@gmail.com> | 2016-08-03 10:12:38 -0400 |
---|---|---|
committer | Taylor Holberton <taylorcholberton@gmail.com> | 2016-08-03 10:12:38 -0400 |
commit | a1799e77a38ba00f37ae2ff3d9d04573ccb0beaa (patch) | |
tree | 2d68bb08db588361855b2dd9be151ef1cc7f8604 /Makefile | |
parent | b47a014f1460ffd6479fd8306c679475b03f27f1 (diff) |
added install command
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -6,6 +6,7 @@ LIB = libtinyalsa.a SHLIB = libtinyalsa.so CROSS_COMPILE = +.PHONY: all all: $(LIB) $(SHLIB) tinyplay tinycap tinymix tinypcminfo tinyplay: $(SHLIB) tinyplay.o @@ -29,6 +30,15 @@ $(LIB): $(OBJECTS) %.o: %.c $(CROSS_COMPILE)$(CC) $(CFLAGS) -fPIC -c $^ -I$(INC) -o $@ +.PHONY: clean clean: -rm $(LIB) $(SHLIB) $(OBJECTS) tinyplay.o tinyplay tinycap.o tinycap \ tinymix.o tinymix tinypcminfo.o tinypcminfo + +.PHONY: install +install: $(LIB) $(SHLIB) + cp -u $(SHLIB) $(PREFIX)/lib/$(SHLIB) + cp -u $(LIB) $(PREFIX)/lib/$(LIB) + mkdir -p $(PREFIX)/include/tinyalsa + cp -u $(INC)/tinyalsa/asoundlib.h $(PREFIX)/include/tinyalsa/asoundlib.h + |