diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-09-16 18:34:41 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-09-16 18:34:41 (GMT) |
commit | 3b98221d43ba62088538ead3aa726f81dd9202f9 (patch) | |
tree | 11aba0942df62a4f1090d7ffd3f4cb98c0c3b6ed /src/libdoxygen.t | |
parent | 2620b73bf03f4ecafc9d751691dccb31cc94a4fe (diff) | |
download | Doxygen-3b98221d43ba62088538ead3aa726f81dd9202f9.zip Doxygen-3b98221d43ba62088538ead3aa726f81dd9202f9.tar.gz Doxygen-3b98221d43ba62088538ead3aa726f81dd9202f9.tar.bz2 |
Release-1.4.4-20050817
Diffstat (limited to 'src/libdoxygen.t')
-rw-r--r-- | src/libdoxygen.t | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/libdoxygen.t b/src/libdoxygen.t index 189684e..20a5667 100644 --- a/src/libdoxygen.t +++ b/src/libdoxygen.t @@ -85,12 +85,17 @@ sub GenerateDep { $(YACC) -l -d -p cppExpYY constexp.y -o ce_parse.c -rm ce_parse.c +TO_C_CMD=sed -e "s/\\\\/\\\\\\\\/g" -e "s/\"/\\\\\"/g" -e "s/^/\"/g" -e "s/$$/\\\\n\"/g" + index_xsd.h: index.xsd - cat index.xsd | sed -e "s/\\\\/\\\\\\\\/g" -e "s/\"/\\\\\"/g" -e "s/^/\"/g" -e "s/$$/\\\\n\"/g" >index_xsd.h + cat index.xsd | $(TO_C_CMD) >index_xsd.h compound_xsd.h: compound.xsd - cat compound.xsd | sed -e "s/\\\\/\\\\\\\\/g" -e "s/\"/\\\\\"/g" -e "s/^/\"/g" -e "s/$$/\\\\n\"/g" >compound_xsd.h + cat compound.xsd | $(TO_C_CMD) >compound_xsd.h search_php.h: search.php - cat search.php | sed -e "s/\\\\/\\\\\\\\/g" -e "s/\"/\\\\\"/g" -e "s/^/\"/g" -e "s/$$/\\\\n\"/g" >search_php.h + cat search.php | $(TO_C_CMD) >search_php.h + +doxygen_css.h: doxygen.css + cat doxygen.css | $(TO_C_CMD) >doxygen_css.h |