changed the way how the library is built
- now there is only one Makefile in the root directory and we have only one pikotools.a lib file - removed: mainparser
This commit is contained in:
27
log/Makefile
27
log/Makefile
@@ -1,27 +0,0 @@
|
||||
include Makefile.o.dep
|
||||
|
||||
libname=log.a
|
||||
|
||||
all: $(libname)
|
||||
|
||||
$(libname): $(o)
|
||||
$(AR) rcs $(libname) $(o)
|
||||
|
||||
|
||||
%.o: %.cpp
|
||||
$(CXX) -c $(CXXFLAGS) -I.. $<
|
||||
|
||||
|
||||
|
||||
depend:
|
||||
makedepend -Y. -I.. -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
|
@@ -1,10 +0,0 @@
|
||||
# DO NOT DELETE
|
||||
|
||||
filelog.o: filelog.h ../textstream/textstream.h ../space/space.h
|
||||
filelog.o: ../textstream/types.h ../convert/inttostr.h ../date/date.h
|
||||
filelog.o: ../membuffer/membuffer.h ../textstream/types.h ../utf8/utf8.h
|
||||
filelog.o: ../utf8/utf8_templates.h ../utf8/utf8_private.h
|
||||
log.o: log.h ../textstream/textstream.h ../space/space.h
|
||||
log.o: ../textstream/types.h ../convert/inttostr.h ../date/date.h
|
||||
log.o: ../membuffer/membuffer.h ../textstream/types.h filelog.h
|
||||
log.o: ../utf8/utf8.h ../utf8/utf8_templates.h ../utf8/utf8_private.h
|
@@ -1 +0,0 @@
|
||||
o = filelog.o log.o
|
Reference in New Issue
Block a user