changed: directory name: confparser -> space

git-svn-id: svn://ttmath.org/publicrep/pikotools/trunk@401 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2012-04-30 12:38:20 +00:00
parent a2ed273090
commit 02645de1f6
7 changed files with 0 additions and 0 deletions

27
space/Makefile Executable file
View File

@@ -0,0 +1,27 @@
include Makefile.o.dep
libname=confparser.a
all: $(libname)
$(libname): $(o)
ar rcs $(libname) $(o)
%.o: %.cpp
$(CXX) -c $(CXXFLAGS) $<
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