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

« back to all changes in this revision

Viewing changes to contrib/rgb/src/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
# .TYPE         make file
 
2
# .NAME         $MIDASHOME/$MIDVERS/contrib/rgb/src/makefile 
 
3
# .LANGUAGE     makefile syntax
 
4
# .ENVIRONMENT  Unix Systems. 
 
5
# .COMMENT      Compiles source files 
 
6
#
 
7
# .REMARKS      
 
8
# .AUTHOR       K. Banse
 
9
# .VERSION 1.0  090209
 
10
 
 
11
include ../../../local/default.mk
 
12
 
 
13
M = ../../exec
 
14
 
 
15
LLIB = -L$(LLIBDIR) -list -L$(LIBDIR) -lmidas
 
16
 
 
17
LIBS =  $(LLIBDIR)/libist.a\
 
18
        $(LIBDIR)/libmidas.a 
 
19
 
 
20
OUT =   $(M)/rgbhjr.exe
 
21
 
 
22
 
 
23
# DEPENDENCIES:
 
24
all: $(MAKEFILE_VMS) $(OUT)
 
25
 
 
26
$(MAKEFILE_VMS): makefile
 
27
        $(MAKE_VMS)
 
28
 
 
29
$(M)/rgbhjr.exe: rgbhjr.o $(LIBS)
 
30
        $(LD77) rgbhjr.o $(LLIB) $(SLIB) -o $@
 
31
        $(STRIP) $@
 
32
 
 
33
clean_exec:
 
34
        rm -f $(OUT)
 
35
 
 
36
clean:
 
37
        rm -f *.o
 
38
        rm -f *.f