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

« back to all changes in this revision

Viewing changes to contrib/tsa/libsrc/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 13:32:58
 
2
# .COPYRIGHT:   Copyright (c) 1988 European Southern Observatory,
 
3
#                               all rights reserved
 
4
# .TYPE         make file
 
5
# .NAME         $MIDASHOME/$MIDVERS/contrib/mva/lib/makefile 
 
6
# .LANGUAGE     makefile syntax
 
7
# .ENVIRONMENT  Unix Systems. 
 
8
# .COMMENT      Compiles source files and generates "tsalib.a" library.
 
9
#
 
10
# .REMARKS
 
11
#
 
12
# .AUTHOR       M.P.
 
13
# .VERSION 1.1  920921:         Implementation 
 
14
# .VERSION 3.0  930308:         Using default.mk file
 
15
 
 
16
include ../../../local/default.mk
 
17
 
 
18
LIB = $(LLIBDIR)/libtsa.a
 
19
LIB1 = $(LLIBDIR)/libtsausr.a
 
20
 
 
21
OBJ0 =    acf.o cracow.o inpcpy.o interpol.o lench.o sort.o\
 
22
          timdft.o riembi.o rbfrac.o gamlog.o  
 
23
OBJ1 =    tsadelur0.o tsadelur1.o tsadelur2.o tsadelur3.o\
 
24
          tsadelur4.o tsadelur5.o tsadelur6.o tsadelur7.o\
 
25
          tsadelur8.o tsadelur9.o 
 
26
 
 
27
# DEPENDENCIES:
 
28
all: $(MAKEFILE_VMS) $(LIB) $(LIB1)
 
29
 
 
30
$(MAKEFILE_VMS): makefile
 
31
        $(MAKE_VMS)
 
32
 
 
33
$(LIB): $(OBJ0)   
 
34
        $(AR) $(AR_OPT) $(LIB) $(OBJ0)
 
35
        $(RANLIB) $(LIB)
 
36
 
 
37
$(LIB1): $(OBJ1)
 
38
        $(AR) $(AR_OPT) $(LIB1) $(OBJ1)
 
39
        $(RANLIB) $(LIB1)
 
40
clean:
 
41
        rm -f $(OBJ0)
 
42
        rm -f $(OBJ1)
 
43
        rm -f *.f