source: ether_ndacc/trunk/dev_ndacc/livraison/src/keckhut/Makefile @ 84

Last change on this file since 84 was 84, checked in by cbipsl, 14 years ago

import ether_ndacc

  • Property svn:executable set to *
File size: 507 bytes
Line 
1#!/bin/bash
2
3OBJ     = fonctions_mod.o head_ames_mod.o grid_ames_mod.o struct_ames_mod.o lidar_mod.o treat_files_list.o
4FC      = pgf90
5FLAGS   =
6.SUFFIXES : .f90
7all:    treat_files_list   
8clean:
9        rm -f *.o *.mod
10.f90.o:
11        $(FC) $(FLAGS) -c head_ames_mod.f90
12        $(FC) $(FLAGS) -c grid_ames_mod.f90
13        $(FC) $(FLAGS) -c struct_ames_mod.f90
14        $(FC) $(FLAGS) -c fonctions_mod.f90
15        $(FC) $(FLAGS) -c lidar_mod.f90
16        $(FC) $(FLAGS) -c treat_files_list.f90
17
18treat_files_list: $(OBJ)
19        $(FC) -o treat_files_list $(OBJ) 
20
21
Note: See TracBrowser for help on using the repository browser.