From a1799e77a38ba00f37ae2ff3d9d04573ccb0beaa Mon Sep 17 00:00:00 2001 From: Taylor Holberton Date: Wed, 3 Aug 2016 10:12:38 -0400 Subject: added install command --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 758f736..38a15a2 100644 --- a/Makefile +++ b/Makefile @@ -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 + -- cgit v1.2.3