blob: 25c46a8ea32be8243151a73b8e55d7c1bd84c165 (
plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# -*- Makefile -*- for gettext-tools/libuniname on VMS using the MMS utility
#### Start of system configuration section. ####
# Programs used by "make":
CC = cc
# These flags affect binary compatibility. GNU gettext does not need them,
# but other packages do, and we need to be binary compatible with them.
ABIFLAGS = /name=(as_is,short) /float=ieee
WARN_CFLAGS = /warning
OPTIMFLAGS = /optimize
CFLAGS = $(ABIFLAGS) $(WARN_CFLAGS) $(OPTIMFLAGS)
DEFS = "VMS=1","HAVE_CONFIG_H=1"
INCLUDES = /include=([],[-],[-.lib])
AR = library
AR_FLAGS = /create
LN = copy
RM = delete
#### End of system configuration section. ####
OBJECTS = uniname.obj
all : uniname.olb
write sys$output "Nothing else to be done for 'all'."
uniname.obj : uniname.c
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) uniname.c
uniname.olb : $(OBJECTS)
$(AR) $(AR_FLAGS) uniname.olb $(OBJECTS)
install : all
write sys$output "Nothing else to be done for 'install'."
installdirs :
write sys$output "Nothing to be done for 'installdirs'."
uninstall :
write sys$output "Nothing to be done for 'uninstall'."
check :
write sys$output "Nothing to be done for 'check'."
mostlyclean : clean
write sys$output "Nothing else to be done for 'mostlyclean'."
clean :
$(RM) *.obj;*
$(RM) *.olb;*
distclean : clean
write sys$output "Nothing else to be done for 'distclean'."
maintainer-clean : distclean
write sys$output "Nothing else to be done for 'maintainer-clean'."
|