Skip to content
Snippets Groups Projects
Commit b460ece2 authored by H. William Welliver III's avatar H. William Welliver III
Browse files

added other c-variant module languages

Rev: lib/modules/Tools.pmod/Standalone.pmod/extract_autodoc.pike:1.45
parent 20a184dc
No related branches found
No related tags found
No related merge requests found
/*
* $Id: extract_autodoc.pike,v 1.44 2004/04/23 13:41:10 per Exp $
* $Id: extract_autodoc.pike,v 1.45 2007/02/12 20:29:30 bill Exp $
*
* AutoDoc mk II extraction script.
*
......@@ -133,7 +133,8 @@ void recurse(string srcdir, string builddir, int root_ts, array(string) root)
if(!has_suffix(fn, ".pike") && !has_suffix(fn, ".pike.in") &&
!has_suffix(fn, ".pmod") && !has_suffix(fn, ".pmod.in") &&
// !has_suffix(fn, ".cmod") && !has_suffix(fn, ".cmod.in") &&
!has_suffix(fn, ".c")) continue;
!has_suffix(fn, ".c") && !has_suffix(fn, ".cc") &&
!has_suffix(fn, ".m")) continue;
Stdio.Stat dstat = file_stat(builddir+fn+".xml");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment