I put the following into a batch file buf its not working.
Can someone show me a valid makefile ?
cd c:\masm32\bin
NAME=VxDLabel
$(NAME).vxd:$(NAME).obj
link -vxd -def:$(NAME).def $(NAME).obj
$(NAME).obj:$(NAME).asm
ml -coff -c -Cx -DMASM6 -DBLD_COFF -DIS_32 $(NAME).asm
Can someone show me a valid makefile ?
cd c:\masm32\bin
NAME=VxDLabel
$(NAME).vxd:$(NAME).obj
link -vxd -def:$(NAME).def $(NAME).obj
$(NAME).obj:$(NAME).asm
ml -coff -c -Cx -DMASM6 -DBLD_COFF -DIS_32 $(NAME).asm
Axial,
When I was playig with Iczelion's VxD example, I had to add this option to the ml command:
-DWIN40COMPAT
I am using the WIN98 DDK and running on WIN95
farrier
When I was playig with Iczelion's VxD example, I had to add this option to the ml command:
-DWIN40COMPAT
I am using the WIN98 DDK and running on WIN95
farrier