Update of /cvsroot/q-lang/qcwrap
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15494
Modified Files:
Makefile
Log Message:
add DESTDIR support
Index: Makefile
===================================================================
RCS file: /cvsroot/q-lang/qcwrap/Makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Makefile 5 Oct 2007 08:57:05 -0000 1.4
--- Makefile 7 Dec 2007 23:50:45 -0000 1.5
***************
*** 5,9 ****
# version number:
! version = 1.1
dist = qcwrap-$(version)
--- 5,9 ----
# version number:
! version = 1.2
dist = qcwrap-$(version)
***************
*** 22,29 ****
install:
! cp qcwrap $(prefix)/bin
uninstall:
! rm -f $(prefix)/bin/qcwrap
dist:
--- 22,30 ----
install:
! test -d "$(DESTDIR)$(prefix)/bin" || mkdir -p "$(DESTDIR)$(prefix)/bin"
! cp qcwrap "$(DESTDIR)$(prefix)/bin"
uninstall:
! rm -f "$(DESTDIR)$(prefix)/bin/qcwrap"
dist:
|