home *** CD-ROM | disk | FTP | other *** search
/ PC Media 22 / PC MEDIA CD22.iso / share / demo / posintro / makefile < prev    next >
Encoding:
Makefile  |  1995-07-23  |  233 b   |  19 lines

  1. NAME=posintro
  2.  
  3. #CC = wcc386 -d2 -w9 -zp4 -zq
  4. CC = wcc386 -d1 -w9 -zp4 -zq -oneatxl
  5. LN = wcl386 -d2 -w4 -zp4 -zq -l=pmodew
  6.  
  7.  
  8. OBJS=$(NAME).obj
  9.  
  10. $(NAME).exe: $(OBJS)
  11.         $(LN) $(OBJS)
  12.  
  13.  
  14.  
  15. .c.obj:
  16.         $(CC) $<
  17.  
  18.  
  19.