summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2003-07-09 23:08:50 +0000
committerBill Nottingham <notting@redhat.com>2003-07-09 23:08:50 +0000
commit75e8e55b63271218796c97b990801b91a87d08a0 (patch)
tree2028a62b90170ca29448603b03d0c1f7d9190983 /Makefile
parent3dcccb6f2d803fce022b787ab52cecf5cc9d9394 (diff)
downloadlibaio-75e8e55b63271218796c97b990801b91a87d08a0.tar.gz
fix /lib64 archeslibaio.0-3-96.2
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 41238ca..868de0a 100644
--- a/Makefile
+++ b/Makefile
@@ -5,13 +5,18 @@ RELEASE=$(shell awk '/Release:/ { print $$2 }' $(SPECFILE))
CVSTAG = $(NAME)_$(subst .,-,$(VERSION))_$(subst .,-,$(RELEASE))
RPM=rpm
+prefix=/usr
+includedir=$(prefix)/include
+libdir=$(prefix)/lib
+
default: all
all:
@$(MAKE) -C src
install:
- @$(MAKE) -C src install
+ @$(MAKE) -C src install prefix=$(prefix) includedir=$(includedir) libdir=$(libdir)
+
clean:
@$(MAKE) -C src clean