Skip to content
Snippets Groups Projects
Commit 0ec224f8 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

This is release libcerf-1.1, with fortran binding by Antonio Cervellino.

parent eac4c2a0
No related branches found
No related tags found
No related merge requests found
# -*- mode: python -*-
# Include file for program lssrc.
# Returns user-written source files.
import glob, re
def source_files(root,ext):
fnames = []
for e in ext:
if e=="h":
e = "hpp"
fnames += sorted( glob.glob( root+"*."+e ) )
return fnames
# -*- mode: python -*-
# Include file for program lssrc.
# Returns user-written source files.
import glob, re
def source_files(root,ext):
fnames = []
for e in ext:
fnames += sorted( glob.glob( root+"*."+e ) )
return fnames
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment