# ilwel.lib - Makefile for Microsoft C CC = cl # Finalized Version CFLAGS = -nologo -MT -c -Ox -DEIF_IL_DLL -W4 -I..\spec\windows\include -I$(ISE_EIFFEL)\studio\spec\$(ISE_PLATFORM)\include -DNONAMELESSUNION -D_UNICODE -DUNICODE # Debug Version #CFLAGS = -c -Zi -MT -nologo -Od -W4 -I..\spec\windows\include -I$(ISE_EIFFEL)\studio\spec\$(ISE_PLATFORM)\include -DNONAMELESSUNION -D_UNICODE -DUNICODE all:: ilwel.lib del *.obj .c.obj: $(CC) $(CFLAGS) $< OBJ = disptchr.obj \ enumfont.obj \ estream.obj \ msgboxpa.obj \ diskspace.obj \ drawstate.obj \ dynload.obj \ choose_folder.obj \ mousehook.obj \ enum_child_windows.obj IL_OBJ = $(OBJ) ilwel.lib: $(IL_OBJ) if exist $@ del $@ lib /NOLOGO /OUT:$@ $(IL_OBJ) if not exist ..\spec mkdir ..\spec if not exist ..\spec\msc mkdir ..\spec\msc if not exist ..\spec\msc\$(ISE_PLATFORM) mkdir ..\spec\msc\$(ISE_PLATFORM) if not exist ..\spec\msc\$(ISE_PLATFORM)\lib mkdir ..\spec\msc\$(ISE_PLATFORM)\lib copy $@ ..\spec\msc\$(ISE_PLATFORM)\lib