home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c500 / 6.ddi / MYPAL.SDK / P1.P < prev    next >
Encoding:
Text File  |  1992-05-28  |  718 b   |  30 lines

  1. WATCOM binary patch file format
  2.  
  3. makefilef╞ûdgdNAME = mypal
  4.  
  5. CFLAGS = -zw -s -d1
  6. CC = wcc386p
  7.  
  8. LNK = $(NAME).lnk
  9.  
  10. OBJS = $(NAME).obj
  11.  
  12. $(NAME).exe : $(OBJS) $(NAME).res $(LNK)
  13.     wlink @$(LNK)
  14.     wbind $(NAME) -R $(NAME).res
  15.     
  16. $(NAME).res : $(NAME).rc $(NAME).ico
  17.     rc -r $(NAME).rc
  18.     
  19. $(LNK) : makefile
  20.     %create $(LNK)
  21.     @%append $(LNK) debug all
  22.     @%append $(LNK) sys win386
  23.     @%append $(LNK) option mindata=256K
  24.     @%append $(LNK) option maxdata=512K
  25.     @%append $(LNK) option stack=20k
  26.     @%append $(LNK) name $(NAME)
  27.     @for %i in ($(OBJS)) do @%append $(LNK) file %i
  28.         
  29. .c.obj :
  30.     $(CC) $(CFLAGS) $[*