doxygen.conf: minor typo

This commit is contained in:
Eran Tromer 2014-07-13 17:02:20 +03:00
parent 2ad444964b
commit 962cb33d6f
2 changed files with 3 additions and 2 deletions

View File

@ -130,7 +130,7 @@ $(EXECUTABLES): %: %.o $(OBJS)
ifeq ($(STATIC),1)
libsnark.a: $(OBJS)
ar cr $@ $^
$(AR) cr $@ $^
lib: libsnark.a
else
libsnark.so: $(OBJS)
@ -154,6 +154,7 @@ clean:
$(DOCS) \
${patsubst %,%.o,${EXECUTABLES}} \
${patsubst %.cpp,%.d,${SRCS}} \
libsnark.so libsnark.a \
$(RM) -fr doxygen/ \
$(RM) $(DEPINST)/lib/libgtest.a $(DEPINST)/lib/gtest-all.o

View File

@ -757,7 +757,7 @@ IMAGE_PATH =
# ignored.
INPUT_FILTER = "perl -pe 's/^(libsnark: .*)$/$1 {#mainpage}/ if $.==1; s!//+ *(TODO|FIXME|XXX)!/// \\todo!'"
# The 1st replacement marks README.d as the main page.
# The 1st replacement marks README.md as the main page.
# The 2nd replacement identifies additional TODO notations.
# These should be done with FILTER_PATTERNS instead, but it looks like shell escaping is different there.