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:
25
src/Makefile
Executable file
25
src/Makefile
Executable 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
|
Reference in New Issue
Block a user