added: src/Makefile and src/Makefile.dep

the ezc.a library is built now


git-svn-id: svn://ttmath.org/publicrep/ezc/trunk@93 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2008-12-30 01:21:30 +00:00
parent 0b88257e08
commit f8f55eae77
2 changed files with 28 additions and 0 deletions

25
src/Makefile Executable file
View File

@ -0,0 +1,25 @@
o = ezc.o
all: ezc.a
ezc.a: $(o)
ar rcs ezc.a $(o)
.SUFFIXES: .cpp .o
.cpp.o:
$(CC) -c $(CFLAGS) $<
depend:
makedepend -Y. -f- *.cpp > Makefile.dep
clean:
rm -f *.o
rm -f *.a
include Makefile.dep

3
src/Makefile.dep Executable file
View File

@ -0,0 +1,3 @@
# DO NOT DELETE
ezc.o: ezc.h