~ubuntu-branches/debian/jessie/eso-midas/jessie

« back to all changes in this revision

Viewing changes to util/bench/whet/makefile

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-okiwi1assxkkiz39
Tags: upstream-13.09pl1.2+dfsg
ImportĀ upstreamĀ versionĀ 13.09pl1.2+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# @(#)makefile  19.1 (ESO-IPG) 02/25/03 14:35:55
 
2
# .COPYRIGHT:   Copyright (c) 1988 European Southern Observatory,
 
3
#                                               all rights reserved
 
4
# .TYPE         make file
 
5
# .NAME         $MIDASHOME/$MIDVERS/util/bench/whet/makefile
 
6
# .LANGUAGE     makefile syntax
 
7
# .ENVIRONMENT  Unix Systems.
 
8
# .COMMENT 
 
9
#
 
10
# .REMARKS
 
11
# .AUTHOR
 
12
# .VERSION 3.0  930308:         Using default.mk file
 
13
 
 
14
include ../../../local/default.mk
 
15
 
 
16
 
 
17
OUT =   whet_single.exe whet_double.exe
 
18
 
 
19
# RULES:
 
20
.for.o:
 
21
        $(F77) $(FFLAGS) $<
 
22
 
 
23
 
 
24
# DEPENDENCIES:
 
25
all: $(OUT)
 
26
 
 
27
whet_single.exe: whet_single.o fetime.o cetime.o
 
28
        $(LD77) whet_single.o fetime.o cetime.o $(SLIB) -o $@
 
29
        $(STRIP) $@
 
30
 
 
31
whet_double.exe: whet_double.o fetime.o cetime.o
 
32
        $(LD77) whet_double.o fetime.o cetime.o $(SLIB) -o $@
 
33
        $(STRIP) $@
 
34
 
 
35
clean_exec:
 
36
        rm -f $(OUT)
 
37
 
 
38
clean:
 
39
        rm -f *.o
 
40
        rm -f *.f
 
41
 
 
42
run:
 
43
        whet_single.exe
 
44
        whet_double.exe