File: makefile

package info (click to toggle)
eso-midas 15.09pl1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 146,960 kB
  • ctags: 55,836
  • sloc: ansic: 360,661; sh: 7,357; makefile: 6,229; pascal: 535; perl: 40; awk: 36; sed: 14
file content (40 lines) | stat: -rw-r--r-- 939 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 
# .COPYRIGHT:	Copyright (c) 1988-2011 European Southern Observatory,
# .TYPE		make file
# .NAME		$MIDASHOME/$MIDVERS/install/unix
# .LANGUAGE	makefile syntax
# .ENVIRONMENT	Unix Systems. 
# .COMMENT	creates executable Shell Scripts
# .REMARKS 
# .AUTHOR	Carlos Guirao
# .VERSION 1.1	910715:		Implementation
# .VERSION 3.1	930511:		Using default.mk
# .VERSION 3.2	930518:		Clean is empty. 
# .VERSION 4.2	930518:		Not using default.mk
# 
# 110830	last modif

# DEFINITIONS:
SHELL=/bin/sh

OUT =	cleanm          install         getvers      setup \
	config          install1        updatebgr \
	copy            install2        install3    update \
	delete          list            update1 \
	help            preinstall      update2 \
	installbgr      select		ed_moptions \
	make_vms 	switch_filter	autoconfig

# RULES
.SCCS_GET:
.SUFFIXES: .sh 
.sh:
	rm -f $@
	cat $< > $@
	chmod +x $@
	
# DEPENDENCIES:
all: $(OUT)

clean:
	rm -f $(OUT)