comparison nt/nmake.defs @ 31344:cd1a81ef52d1

(CFLAGS): No need for -D_ANONYMOUS_UNION -D_ANONYMOUS_STRUCT on compile line. (FOREACH, FORVAR, FORDO, ENDFOR): New definitions. (ARGQUOTE, DQUOTE): New defines.
author Andrew Innes <andrewi@gnu.org>
date Sun, 03 Sep 2000 17:36:34 +0000
parents 8779f864ca44
children 9d1b600b5ace
comparison
equal deleted inserted replaced
31343:937d491f865c 31344:cd1a81ef52d1
116 DEBUG_CFLAGS = -DEMACSDEBUG 116 DEBUG_CFLAGS = -DEMACSDEBUG
117 !else 117 !else
118 DEBUG_CFLAGS = 118 DEBUG_CFLAGS =
119 !endif 119 !endif
120 CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \ 120 CFLAGS = -I. -DWIN32_LEAN_AND_MEAN $(ARCH_CFLAGS) -D$(ARCH) \
121 -D_CRTAPI1=_cdecl -D_ANONYMOUS_UNION -D_ANONYMOUS_STRUCT \ 121 -D_CRTAPI1=_cdecl $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
122 $(DEBUG_CFLAGS) $(USER_CFLAGS) $(LOCAL_FLAGS)
123 EMACS_EXTRA_C_FLAGS = 122 EMACS_EXTRA_C_FLAGS =
124 123
125 SYS_LDFLAGS = -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net 124 SYS_LDFLAGS = -release -incremental:no -version:3.10 -swaprun:cd -swaprun:net
126 125
127 # see comments in allocate_heap in w32heap.c before changing any of the 126 # see comments in allocate_heap in w32heap.c before changing any of the
140 139
141 CP = cp -f 140 CP = cp -f
142 CP_DIR = cp -rf 141 CP_DIR = cp -rf
143 IFNOTSAMEDIR = if not exist ..\same-dir.tst 142 IFNOTSAMEDIR = if not exist ..\same-dir.tst
144 ENDIF = 143 ENDIF =
144 FOREACH = for %%f in (
145 FORVAR = %%f
146 FORDO = ) do
147 ENDFOR =
148 ARGQUOTE = "
149 DQUOTE = \"
145 DEL = rm 150 DEL = rm
146 DEL_TREE = rm -r 151 DEL_TREE = rm -r
147 152
148 # The location of the icon file 153 # The location of the icon file
149 EMACS_ICON_PATH = ../nt/emacs.ico 154 EMACS_ICON_PATH = ../nt/emacs.ico