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

« back to all changes in this revision

Viewing changes to stdred/feros/etc/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:20:49
 
2
# @(#)makefile  7.1 (ESO-IPG) 2/24/94 20:35:04
 
3
# .COPYRIGHT:   Copyright (c) 1988 European Southern Observatory,
 
4
#                                               all rights reserved
 
5
# .TYPE         make file
 
6
# .NAME         */etc/makefile
 
7
# .LANGUAGE     makefile syntax
 
8
# .ENVIRONMENT  Unix Systems. 
 
9
# .COMMENT      Copy *.ctx files to common "context" directory.
 
10
# .REMARKS 
 
11
# .AUTHOR       Carlos Guirao
 
12
# .VERSION 1.1  911023:        Implementation
 
13
 
 
14
SHELL=/bin/sh
 
15
CTXDIR=../../../context
 
16
LN=ln -s
 
17
 
 
18
all: clean
 
19
        @(PCK=`pwd | sed -e 's/\/etc$$//' -e 's/^.*\///'`; \
 
20
        for file in *.ctx; \
 
21
                do  (cd $(CTXDIR); $(LN) ../stdred/$$PCK/etc/$$file $$file;) \
 
22
        done)
 
23
 
 
24
 
 
25
clean:
 
26
        @(OBJS=`ls *.ctx` ; cd $(CTXDIR) ; rm -f $$OBJS)