git-svn-id: svn://ttmath.org/publicrep/tito/src@361 e52654a7-88a9-db11-a3e9-0013d4bc506e
27 lines
361 B
Makefile
Executable File
27 lines
361 B
Makefile
Executable File
include Makefile.o.dep
|
|
|
|
|
|
all: tito.a
|
|
|
|
tito.a: $(o)
|
|
ar rcs tito.a $(o)
|
|
|
|
|
|
%.o: %.cpp
|
|
$(CXX) -c $(CXXFLAGS) $<
|
|
|
|
|
|
|
|
depend:
|
|
makedepend $(CXXFLAGS) -Y. -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 *.a
|
|
|
|
|
|
include Makefile.dep
|