mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-12-22 04:13:33 +01:00
Simplified tags file
This commit is contained in:
parent
d152eab8d1
commit
75859b10c1
@ -154,12 +154,14 @@ def run():
|
|||||||
for v in l:
|
for v in l:
|
||||||
do_print_short(file,variables[v])
|
do_print_short(file,variables[v])
|
||||||
line = variables[v].line
|
line = variables[v].line
|
||||||
tags.append( '%s\t%s\t/%s/;"\n'%(v,line.filename[0],line.text.split('!')[0].strip()) )
|
# tags.append( '%s\t%s\t/%s/;"\n'%(v,line.filename[0],line.text.split('!')[0].strip()) )
|
||||||
|
tags.append( '%s\t%s\t%d\n'%(v,line.filename[0],line.i) )
|
||||||
file.close()
|
file.close()
|
||||||
l = subroutines.keys()
|
l = subroutines.keys()
|
||||||
for v in l:
|
for v in l:
|
||||||
line = subroutines[v].line
|
line = subroutines[v].line
|
||||||
tags.append('%s\t%s\t/%s/;"\n'%(v,line.filename,line.text.split('!')[0].strip()))
|
# tags.append('%s\t%s\t/%s/;"\n'%(v,line.filename,line.text.split('!')[0].strip()))
|
||||||
|
tags.append('%s\t%s\t%d\n'%(v,line.filename,line.i))
|
||||||
tags.sort()
|
tags.sort()
|
||||||
file = open("tags","w")
|
file = open("tags","w")
|
||||||
for line in tags:
|
for line in tags:
|
||||||
|
@ -206,6 +206,6 @@ def run():
|
|||||||
print >>file, "irpf90.a: $(OBJ) $(OBJ1)\n\t$(AR) crf irpf90.a $(OBJ1)\n"
|
print >>file, "irpf90.a: $(OBJ) $(OBJ1)\n\t$(AR) crf irpf90.a $(OBJ1)\n"
|
||||||
print >>file, "clean:\n\trm -rf $(EXE) $(OBJ1) irpf90.a $(ALL_OBJ1) $(ALL)\n"
|
print >>file, "clean:\n\trm -rf $(EXE) $(OBJ1) irpf90.a $(ALL_OBJ1) $(ALL)\n"
|
||||||
print >>file, "veryclean:\n\t- $(MAKE) clean\n"
|
print >>file, "veryclean:\n\t- $(MAKE) clean\n"
|
||||||
print >>file, "\t- rm -rf "+irpdir+" "+mandir+" "+IRPF90_MAKE+" irpf90_entities dist\n"
|
print >>file, "\t- rm -rf "+irpdir+" "+mandir+" "+IRPF90_MAKE+" irpf90_entities dist tags\n"
|
||||||
|
|
||||||
file.close()
|
file.close()
|
||||||
|
Loading…
Reference in New Issue
Block a user