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 (35 lines) | stat: -rw-r--r-- 412 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
28
29
30
31
32
33
34
35
# Makefile for OpenVMS (GNU Make)
#
# $Revision$
#
#
# This file is part of adasockets port to OpenVMS
#

.PHONY: all distclean clean
.DEFAULT: all



FILES=	stream_listener.adb\
	stream_sender.adb\
	listener.adb\
	multi.adb\
	tcprelay.adb


all: $(FILES:.adb=.exe)



%.exe: %.adb
	gnat make /search=([-.src]) $<


distclean:
	del/noconf/log *.ali;*, *.obj;*, *.exe;*


clean:
	del/noconf/log *.ali;*, *.obj;*