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

« back to all changes in this revision

Viewing changes to contrib/surfphot/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:30:46
 
2
# .COPYRIGHT:   Copyright (c) 1988 European Southern Observatory,
 
3
#                               all rights reserved
 
4
# .TYPE         make file
 
5
# .NAME         $MIDASHOME/$MIDVERS/contrib/surfphot/lib/makefile 
 
6
# .LANGUAGE     makefile syntax
 
7
# .ENVIRONMENT  Unix Systems. 
 
8
# .COMMENT      Compiles source files and generates "libsurfphot.a" library.
 
9
#
 
10
# .REMARKS
 
11
#
 
12
# .AUTHOR       
 
13
# .VERSION 1.1  890704:         Implementation
 
14
# .VERSION 2.1  901102:         new directory structure CG.
 
15
# .VERSION 3.0  930308:         Using default.mk file
 
16
 
 
17
include ../../../local/default.mk
 
18
 
 
19
LIB = $(LLIBDIR)/libsurfphot.a
 
20
 
 
21
OBJ1=   apfftc.o  lfit.o    mnag.o    phamod.o  sfft.o    histo.o\
 
22
        coefy.o   cpfram.o  extell.o  feet.o    fllgrd.o  flmtx.o
 
23
OBJ2=   intnul.o  invrs.o   lire.o    long.o    mean.o    median.o \
 
24
        mode.o    normal.o  outdim.o  polin.o   rctint.o  rctmap.o
 
25
OBJ3=   row.o     sbtrct.o  serch.o   sqztmp.o  short.o   syst.o   \
 
26
        truncy.o  updat.o   vfl.o     rctscl.o  simul.o   sort1.o
 
27
 
 
28
# DEPENDENCIES:
 
29
all: $(MAKEFILE_VMS) $(LIB)
 
30
 
 
31
$(MAKEFILE_VMS): makefile
 
32
        $(MAKE_VMS)
 
33
 
 
34
$(LIB): $(OBJ1) $(OBJ2) $(OBJ3)
 
35
        $(AR) $(AR_OPT) $(LIB) $(OBJ1)
 
36
        $(AR) $(AR_OPT) $(LIB) $(OBJ2)
 
37
        $(AR) $(AR_OPT) $(LIB) $(OBJ3)
 
38
        $(RANLIB) $(LIB)
 
39
 
 
40
clean:
 
41
        rm -f $(OBJ1)
 
42
        rm -f $(OBJ2)
 
43
        rm -f $(OBJ3)
 
44
        rm -f *.f
 
45
 
 
46
 
 
47
 
 
48
 
 
49
 
 
50
 
 
51
 
 
52
 
 
53
 
 
54
 
 
55
 
 
56