~ubuntu-branches/ubuntu/jaunty/geany/jaunty

« back to all changes in this revision

Viewing changes to data/filetypes.fortran

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2008-05-09 20:40:06 UTC
  • mfrom: (1.1.7 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080509204006-9fu737rfvapfj7pn
Tags: 0.14-1ubuntu1
* Merge from debian unstable, remaining changes:
  - patches/20_add_debdiff_as_diff_type.dpatch:
    Also recognize .dpatch files as diff's
  - debian/geany.xpm:
    Replace icon with a .xpm of the new one
  - Modify Maintainer value to match the DebianMaintainerField
    specification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
# %e will be replaced by the filename without extension
55
55
# (use only one of it at one time)
56
56
compiler=g77 -Wall -c "%f"
57
 
# the -o option is automatically added by Geany
58
 
linker=g77 -Wall "%f"
 
57
linker=g77 -Wall -o "%e" "%f"
59
58
run_cmd="./%e"
60
59