File: Makefile.VMS

package info (click to toggle)
adasockets 1.8.6-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,336 kB
  • ctags: 93
  • sloc: sh: 8,947; ada: 1,676; ansic: 357; makefile: 222
file content (27 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (11)
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
# Main Makefile.VMS
#
# $Revision$
#
#
# This file is part of adasockets port on OpenVMS
#

.PHONY: all clean distclean
.DEFAULT: all



all:
	make "-C" [.vms] all
	make "-C" [.src] all
	make "-C" [.examples] all

clean:
	make "-C" [.vms] clean
	make "-C" [.src] clean
	make "-C" [.examples] clean

distclean:
	make "-C" [.vms] distclean
	make "-C" [.src] distclean
	make "-C" [.examples] distclean