Adding a few missing files

This commit is contained in:
2012-12-06 22:10:39 +04:00
parent 1d17896f32
commit 13ed6ff8c3
8 changed files with 48 additions and 204 deletions

View File

@@ -0,0 +1,12 @@
OBJFILES=method1.o method2.o method3.o obj1.o obj2.o obj3.o
CXXFLAGS=-I .
all : $(OBJFILES)
$(AR) cr libtest_lib_static.a $(OBJFILES)
.cpp.o:
$(CXX) -fPIC -c -o $@ $<
clean:
rm -f $(OBJFILES)