diff options
Diffstat (limited to 'install')
-rwxr-xr-x | install | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,9 +1,11 @@ #!/bin/sh -. ./conf-build +# We are in ./src: + +. ../conf-build install_libs() { cp *.a $OFILES "$LIBDIR" ; } -install_hdrs() { cp include/*.h "$HDRDIR" ; } +install_hdrs() { cp ../include/*.h "$HDRDIR" ; } echo -n "Installing qlibs ..." mkdir -p "$LIBDIR" "$HDRDIR" 2>/dev/null |