comparison src/xxd/Make_vms.mms @ 18896:4481f3b29fc5 v8.2.0009

patch 8.2.0009: VMS: terminal version doesn't build Commit: https://github.com/vim/vim/commit/95f0b6e5a5e5861da34cc064c601faf4eeed4ed6 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 15 12:54:18 2019 +0100 patch 8.2.0009: VMS: terminal version doesn't build Problem: VMS: terminal version doesn't build. Solution: Move MIN definition. Adjust #ifdefs. (Zoltan Arpadffy)
author Bram Moolenaar <Bram@vim.org>
date Sun, 15 Dec 2019 13:00:04 +0100
parents 3fc0f57ecb91
children
comparison
equal deleted inserted replaced
18895:c437c52fb34f 18896:4481f3b29fc5
9 # 9 #
10 # mms/descrip=Make_vms.mms 10 # mms/descrip=Make_vms.mms
11 # or if you use mmk 11 # or if you use mmk
12 # mmk/descrip=Make_vms.mms 12 # mmk/descrip=Make_vms.mms
13 # 13 #
14 14 # To cleanup: mms/descrip=Make_vms.mms clean
15 #
15 ###################################################################### 16 ######################################################################
16 # Configuration section. 17 # Configuration section.
17 ###################################################################### 18 ######################################################################
18 # Compiler selection. 19 # Compiler selection.
19 # Comment out if you use the VAXC compiler 20 # Comment out if you use the VAXC compiler
56 .SUFFIXES : .obj .c 57 .SUFFIXES : .obj .c
57 58
58 SOURCES = xxd.c 59 SOURCES = xxd.c
59 OBJ = xxd.obj 60 OBJ = xxd.obj
60 61
61 .obj.c : 62 .c.obj :
62 $(CC_DEF) $(CFLAGS) $< 63 $(CC_DEF) $(CFLAGS) $<
63 64
64 $(TARGET) : $(OBJ) 65 $(TARGET) : $(OBJ)
65 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+ 66 $(LD_DEF) $(LDFLAGS) /exe=$(TARGET) $+
66 67
67 clean : 68 clean :
68 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;* 69 -@ if "''F$SEARCH("*.obj")'" .NES. "" then delete/noconfirm/nolog *.obj;*
69 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;* 70 -@ if "''F$SEARCH("*.exe")'" .NES. "" then delete/noconfirm/nolog *.exe;*
71
72 xxd.obj : xxd.c