view makefile.wpm @ 1838:ca304f28de3b

Fix 64bit crashes on Windows when building with Visual Studio 2012. LPARAM in 32bit mode is LONG, but in 64bit mode it is uint64... There were casts to LONG in several places that were getting truncated with the new version of the compiler (but not gcc or older versions).
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 16 Nov 2012 21:18:20 +0000
parents e113f9e46fbd
children 1660b4ecb92f
line wrap: on
line source

#===================================================================
#
#   Auto-dependency information
#
#===================================================================
OS22_H = $(%WATCOM)\h\os2
CFLAGS  = -i=os2 -i=$(OS22_H) -DUNICODE -bm -bt=OS2 -zq -d2 -bd -sg
TKPATH=C:\Toolkit
TLKTLIB = $(TKPATH)\LIB

.SUFFIXES:
.SUFFIXES: .obj .c
.c.obj: .AUTODEPEND
	wcc386 $(CFLAGS) $*.c

all:	dw.dll dwcompat.dll dwtest.exe

dwcompat.dll: dirent.obj dwcompat.obj
	wlink @os2\dwcompat.lnk name dwcompat.dll system os2v2_dll d a library $(TLKTLIB)\so32dll,$(TLKTLIB)\tcp32dll option implib=dwcompat option map option symf f $[@ f dwcompat
	copy dwcompat.lib lib
        copy dwcompat.dll dll

dirent.obj:
	wcc386 $(CFLAGS) os2\dirent.c

dw.dll: dw.obj
	wlink @os2\dw.lnk name dw.dll system os2v2_dll d a library $(TLKTLIB)\libuls,$(TLKTLIB)\libconv,$(TLKTLIB)\unikbd option implib=dw option map option symf f $[@
	copy dw.lib lib
        copy dw.dll dll

dw.obj: os2\dw.c
	wcc386 $(CFLAGS) os2\dw.c

dwtest.exe: dwtest.obj
	wlink name dwtest.exe system os2v2_pm d a library lib\dw.lib option map option symf f $[@

dwtest.obj:
	wcc386 /DOS2 -i=os2 -i=$(OS22_H) -bm -bt=OS2 -zq -d2 -sg dwtest.c

clean:
	@if exist *.obj del *.obj
	@if exist *.sym del *.sym
	@if exist *.map del *.map
	@if exist *.lib del *.lib
	@if exist *.dll del *.dll
	@if exist *.exe del *.exe
	@if exist lib\*.lib del lib\*.lib