# wel.lib - Makefile for Microsoft C CC = cl # Finalized Version CFLAGS = -nologo -c -Ox -W4 -I..\spec\windows\include "-I$(ISE_EIFFEL)\studio\spec\$(ISE_PLATFORM)\include" -DNONAMELESSUNION -D_UNICODE -DUNICODE # Debug Version #CFLAGS = -c -Zi -nologo -Od -W4 -I..\spec\windows\include -I$(ISE_EIFFEL)\studio\spec\$(ISE_PLATFORM)\include -DNONAMELESSUNION -D_UNICODE -DUNICODE all:: wel.lib del *.obj .c.obj: $(CC) $(CFLAGS) $< OBJ = disptchr.obj \ enumfont.obj \ enum_child_windows.obj \ estream.obj \ msgboxpa.obj \ diskspace.obj \ drawstate.obj \ dynload.obj \ choose_folder.obj \ mousehook.obj wel.lib: $(OBJ) if exist $@ del $@ lib /NOLOGO /OUT:$@ $(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