Makefile

changeset 156
6a4bd1f4c57e
parent 155
45395ba5ed30
child 157
ae7cc5716f38
     1.1 --- a/Makefile	Mon Sep 09 10:48:08 2013 +0200
     1.2 +++ b/Makefile	Mon Sep 09 11:54:32 2013 +0200
     1.3 @@ -31,10 +31,8 @@
     1.4  # available configurations:
     1.5  #   clang
     1.6  #   gcc
     1.7 -#   g++
     1.8  #   osx
     1.9  #   suncc
    1.10 -#   windows
    1.11  #
    1.12  
    1.13  CONF=gcc
    1.14 @@ -66,11 +64,13 @@
    1.15  
    1.16  install: ucx $(PREFIX)/lib $(PREFIX)/include/ucx
    1.17  	cp ./build/release/libucx$(LIB_EXT) $(PREFIX)/lib && \
    1.18 +	cp ./build/release/libucx$(SO_EXT) $(PREFIX)/lib && \
    1.19          cp ./ucx/*.h $(PREFIX)/include/ucx
    1.20  
    1.21  uninstall:
    1.22  	$(RM) $(RMFLAGS) $(PREFIX)/include/ucx &&\
    1.23 -	$(RM) $(RMFLAGS) $(PREFIX)/lib/libucx$(LIB_EXT)
    1.24 +	$(RM) $(RMFLAGS) $(PREFIX)/lib/libucx$(LIB_EXT) &&\
    1.25 +	$(RM) $(RMFLAGS) $(PREFIX)/lib/libucx$(SO_EXT)
    1.26  
    1.27  $(PREFIX)/lib:
    1.28  	mkdir -p $(PREFIX)/lib

mercurial