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

« back to all changes in this revision

Viewing changes to .pc/propagate_buildflags.patch/libsrc/plot/makefile

  • Committer: Package Import Robot
  • Author(s): Ole Streicher
  • Date: 2014-04-22 14:44:58 UTC
  • Revision ID: package-import@ubuntu.com-20140422144458-sl34juxohmn4aty4
Tags: 13.09pl1.2+dfsg-1
Initial release. (Closes: #740702)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# .COPYRIGHT:   Copyright (c) 1993-2006 European Southern Observatory,
 
2
#                                               all rights reserved
 
3
# .TYPE         Make file
 
4
# .NAME         $MIDASHOME/$MIDVERS/libsrc/plot/makefile 
 
5
# .LANGUAGE     makefile syntax
 
6
# .ENVIRONMENT  Unix Systems. 
 
7
# .COMMENT      Compiles source files and generates "libplot.a" library.
 
8
# .REMARKS
 
9
# .AUTHOR       Rein H. Warels
 
10
# .VERSION 1.1  930115:         Implementation
 
11
 
12
# 060404        last modif
 
13
 
 
14
 
 
15
include ../../local/default.mk
 
16
 
 
17
CFLAGS = $(C_OPT) $(SH_OPT) $(DEBUG) $(SYS) -I$(INC)
 
18
 
 
19
LIB =   $(LIBDIR)/libplot.a
 
20
 
 
21
OBJ1 = getfrm.o pca.o pcd.o pck.o pco.o pcg.o pctset.o
 
22
 
 
23
OBJ2 = getaxs.o pta.o ptb.o ptg.o ptk.o pto.o ypt.o
 
24
 
 
25
FSRC = getaxs.c pta.c ptb.c ptg.c ptk.c pto.c
 
26
 
 
27
 
 
28
# DEPENDENCIES:
 
29
all: $(MAKEFILE_VMS) $(LIB)
 
30
 
 
31
$(MAKEFILE_VMS): makefile
 
32
        $(MAKE_VMS)
 
33
 
 
34
$(LIB): $(OBJ1) $(OBJ2)
 
35
        $(AR) $(AR_OPT) $(LIB) $(OBJ1)
 
36
        $(AR) $(AR_OPT) $(LIB) $(OBJ2)
 
37
 
 
38
        $(RANLIB) $(LIB)
 
39
 
 
40
clean:
 
41
        rm -f $(OBJ1) $(OBJ2)
 
42
        rm -f $(FSRC)
 
43
 
 
44
 
 
45
 
 
46
 
 
47
 
 
48
 
 
49
 
 
50
 
 
51
 
 
52
 
 
53
 
 
54
 
 
55
 
 
56