comparison nt/xpm.mak @ 817:ece8c2170578

[xemacs-hg @ 2002-04-23 00:44:29 by jhar] Default to using MSVCRT as the C runtime for xpm
author jhar
date Tue, 23 Apr 2002 00:44:30 +0000
parents 74fd4e045ea6
children 5274591ce707
comparison
equal deleted inserted replaced
816:39b1580316c8 817:ece8c2170578
8 DEBUG=0 8 DEBUG=0
9 !endif 9 !endif
10 !endif 10 !endif
11 11
12 !if !defined(USE_CRTDLL) 12 !if !defined(USE_CRTDLL)
13 USE_CRTDLL=0 13 USE_CRTDLL=1
14 !endif 14 !endif
15 15
16 !if $(DEBUG) 16 !if $(DEBUG)
17 OPT=-Od -Zi 17 OPT=-Od -Zi
18 LINK_DEBUG=-debug 18 LINK_DEBUG=-debug
65 65
66 ..\X11\NUL: 66 ..\X11\NUL:
67 mkdir ..\X11 67 mkdir ..\X11
68 68
69 Xpm.lib: $(OBJS) 69 Xpm.lib: $(OBJS)
70 !if $(USE_CRTDLL)
71 # Target is ok, link builds lib as a side effect.
72 link -nologo -dll -def:xpm.def -out:Xpm.dll gdi32.lib $(OBJS)
73 !else
74 lib -nologo -out:$@ $(OBJS) 70 lib -nologo -out:$@ $(OBJS)
75 !endif