moved files from tito/trunk to tito/trunk/src

git-svn-id: svn://ttmath.org/publicrep/tito/trunk@377 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2012-01-12 02:53:55 +00:00
parent 09dcf8f036
commit b97d237ead
11 changed files with 0 additions and 0 deletions

View File

@@ -1,26 +0,0 @@
include Makefile.o.dep
libname=tito.a
all: $(libname)
$(libname): $(o)
ar rcs $(libname) $(o)
%.o: %.cpp
$(CXX) -c $(CXXFLAGS) $<
depend:
makedepend -Y. -I../../pikotools -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep
clean:
rm -f *.o
rm -f $(libname)
include Makefile.dep