File: Makefile.VMS

package info (click to toggle)
adasockets 1.8.10-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,468 kB
  • sloc: sh: 10,787; ada: 1,700; ansic: 357; makefile: 258
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