# # makefile for Notes API test program Ndaleks32.DLL # Windows 32-bit version using Microsoft Visual Studio 2010 compiler and linker. # # This makefile assumes that the INCLUDE and LIB environment variables # are set up to point at the Notes and C "include" and "lib" directories. # Standard Windows 32-bit make definitions !include cpuflags = -Zp outfilename = ndaleks32 defname = daleks32 all : $(outfilename).DLL $(outfilename).DLL : daleks.OBJ $(defname).DEF $(link) $(linkdebug) -dll -def:$(defname).DEF -entry:_DllMainCRTStartup$(DLLENTRY) -out:$(outfilename).DLL daleks.OBJ \ $(guilibs) notes.lib copy $(outfilename).DLL c:\ibm\lotus\domino\$(outfilename).DLL @echo Copied $(outfilename).DLL to c:\ibm\lotus\domino daleks.OBJ : daleks.H daleks.C $(cc) $(cdebug) $(cflags) $(cpuflags) /optimize -DNT $(cvars) daleks.C