From e5ff066539f1719b0256f6648d242db5b5a5164f Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Sun, 2 Nov 2008 14:22:34 +0000 Subject: [PATCH] Added 'make install' target --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Makefile b/Makefile index ff496ca..90f3029 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,10 @@ CFLAGS_DEBUG= SONAME=libtermkey.so.0 +PREFIX=/usr/local +LIBDIR=$(PREFIX)/lib +INCDIR=$(PREFIX)/include + ifeq ($(DEBUG),1) CFLAGS_DEBUG=-ggdb -DDEBUG endif @@ -23,3 +27,11 @@ libtermkey.so: termkey.o driver-csi.o driver-ti.o .PHONY: clean clean: rm -f *.o demo + +.PHONY: install +install: + install -d $(DESTDIR)$(INCDIR) + install -m644 termkey.h $(DESTDIR)$(INCDIR) + install -d $(DESTDIR)$(LIBDIR) + install libtermkey.so $(DESTDIR)$(LIBDIR)/$(SONAME) + ln -sf $(SONAME) $(DESTDIR)$(LIBDIR)/libtermkey.so