File: makefile

package info (click to toggle)
eso-midas 22.02pl1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 146,592 kB
  • sloc: ansic: 360,666; makefile: 6,230; sh: 6,003; pascal: 535; perl: 40; awk: 36; sed: 14
file content (30 lines) | stat: -rw-r--r-- 760 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
# @(#)makefile	19.1 (ESO-IPG) 02/25/03 13:39:42
# .COPYRIGHT:   Copyright (c) 1988 European Southern Observatory,
#                                               all rights reserved
# .TYPE         make file
# .NAME         $MIDASHOME/$MIDVERS/gui/libsrc/makefile
# .LANGUAGE     makefile syntax
# .ENVIRONMENT  Unix Systems.
# .COMMENT      Compiles source files and generates "libcom.a" library.
#
# .REMARKS
#
# .AUTHOR
# .VERSION 1.1  920320:         Implementation
# .VERSION 3.0  930308:		Using default.mk file

include ../../../local/default.mk

#Definitions:
#DIRS=Comm Wcl Xukc $(UIMX)/src
DIRS=Comm $(UIMX)/src

all:
	@(for dir in $(DIRS); \
	do (cd $$dir; $(MAKE) all)\
	done)

clean: 
	@(for dir in $(DIRS); \
	do (cd $$dir; $(MAKE) clean)\
	done)