#--------------------
# edit make file
#--------------------

CC=icc
CFLAGS=-c /Q+ /Tl3 /Ti-
#CFLAGS=-c /Q+ /Tl3 /Ti+

OBJS= edit.obj efile.obj edlg.obj

edit32.exe : $(OBJS) edit.def edit.res edit32.hlp
#    link386 /NOI /ALIGN:16 /DE edit.obj+efile.obj+edlg.obj,edit32.exe,,,edit.def;
    link386 /NOI /ALIGN:16 /EXEPACK edit.obj+efile.obj+edlg.obj,edit32.exe,,,edit.def;
    rc edit.res edit32.exe


edit32.hlp : edit32.ipf
   ipfc edit32.ipf
                
edit.obj : edit.c edit.h
   $(CC) $(CFLAGS) edit.c
     
efile.obj : efile.c edit.h
   $(CC) $(CFLAGS) efile.c
    
edlg.obj : edlg.c edit.h
   $(CC) $(CFLAGS) edlg.c

edit.res : edit.rc edit.h edit.ico
    rc -r edit.rc
