Big renaming. Uses the bp namespace everywhere
[SXSI/libbp.git] / Makefile
index 64c98b3..542525a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -26,14 +26,14 @@ CXXFLAGS= $(INC_FLAGS) $(OPT_FLAGS)
 CC=gcc
 
 
-OBJECTS_BP=bp.o darray.o bpcore.o
-LIB_BP=libbpa.a
+OBJECTS_BP=bp.o bp-utils.o bp-darray.o bp-core.o
+LIB_BP=libbp.a
 
 all: depend $(LIB_BP)
 
 $(LIB_BP): $(OBJECTS_BP)
-       @echo [BP]
-       $(HIDE) ar rcs libbp.a $(OBJECTS_BP)
+       @echo [Link] $@
+       $(HIDE) ar rcs $@ $(OBJECTS_BP)
 
 %o: %c
        @echo [C] $@