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:
@@ -1,27 +0,0 @@
|
||||
include Makefile.o.dep
|
||||
|
||||
libname=space.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,27 +0,0 @@
|
||||
# DO NOT DELETE
|
||||
|
||||
jsontospaceparser.o: jsontospaceparser.h space.h ../textstream/types.h
|
||||
jsontospaceparser.o: ../convert/inttostr.h ../utf8/utf8.h
|
||||
jsontospaceparser.o: ../textstream/textstream.h ../space/space.h
|
||||
jsontospaceparser.o: ../date/date.h ../membuffer/membuffer.h
|
||||
jsontospaceparser.o: ../textstream/types.h ../utf8/utf8_templates.h
|
||||
jsontospaceparser.o: ../utf8/utf8_private.h ../convert/strtoint.h
|
||||
jsontospaceparser.o: ../convert/text.h ../convert/misc.h
|
||||
main.o: space.h ../textstream/types.h ../convert/inttostr.h ../utf8/utf8.h
|
||||
main.o: ../textstream/textstream.h ../space/space.h ../date/date.h
|
||||
main.o: ../membuffer/membuffer.h ../textstream/types.h
|
||||
main.o: ../utf8/utf8_templates.h ../utf8/utf8_private.h
|
||||
main.o: ../space/jsontospaceparser.h
|
||||
space.o: space.h ../textstream/types.h ../convert/inttostr.h ../utf8/utf8.h
|
||||
space.o: ../textstream/textstream.h ../space/space.h ../date/date.h
|
||||
space.o: ../membuffer/membuffer.h ../textstream/types.h
|
||||
space.o: ../utf8/utf8_templates.h ../utf8/utf8_private.h ../convert/convert.h
|
||||
space.o: ../convert/inttostr.h ../convert/patternreplacer.h
|
||||
space.o: ../convert/strtoint.h ../convert/text.h ../convert/misc.h
|
||||
spaceparser.o: spaceparser.h space.h ../textstream/types.h
|
||||
spaceparser.o: ../convert/inttostr.h ../utf8/utf8.h
|
||||
spaceparser.o: ../textstream/textstream.h ../space/space.h ../date/date.h
|
||||
spaceparser.o: ../membuffer/membuffer.h ../textstream/types.h
|
||||
spaceparser.o: ../utf8/utf8_templates.h ../utf8/utf8_private.h
|
||||
spacetojson.o: spacetojson.h space.h ../textstream/types.h
|
||||
spacetojson.o: ../convert/inttostr.h
|
@@ -1 +0,0 @@
|
||||
o = jsontospaceparser.o main.o space.o spaceparser.o spacetojson.o
|
Reference in New Issue
Block a user