File: Makefile

package info (click to toggle)
camlidl 1.09-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,212 kB
  • sloc: ml: 4,982; ansic: 942; cpp: 908; makefile: 357; xml: 213; sh: 74
file content (43 lines) | stat: -rw-r--r-- 1,363 bytes parent folder | download | duplicates (2)
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
41
42
43
#***********************************************************************
#*                                                                     *
#*                              CamlIDL                                *
#*                                                                     *
#*            Xavier Leroy, projet Cristal, INRIA Rocquencourt         *
#*                                                                     *
#*  Copyright 1999 Institut National de Recherche en Informatique et   *
#*  en Automatique.  All rights reserved.  This file is distributed    *
#*  under the terms of the GNU Library General Public License.         *
#*                                                                     *
#***********************************************************************

#* $Id: Makefile,v 1.18 2000-08-19 11:04:55 xleroy Exp $

include config/Makefile

all:
	cd compiler; $(MAKE) all
	cd runtime; $(MAKE) all
	cd lib; $(MAKE) all
	cd tools; $(MAKE) all

opt:
	cd lib; $(MAKE) opt

install:
	cd compiler; $(MAKE) install
	cd runtime; $(MAKE) install
	cd lib; $(MAKE) install
	cd tools; $(MAKE) install

clean:
	cd compiler; $(MAKE) clean
	cd runtime; $(MAKE) clean
	cd lib; $(MAKE) clean
	cd tools; $(MAKE) clean

depend:
	cd compiler; $(MAKE) depend
	cd runtime; $(MAKE) depend
	cd lib; $(MAKE) depend
	cd tools; $(MAKE) depend