home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume25 / input-edit / part01 / Makefile < prev    next >
Encoding:
Makefile  |  1991-11-12  |  98 b   |  8 lines

  1. OBJS = testgl.o getline.o
  2.  
  3. testgl: $(OBJS)
  4.     $(CC) -o testgl $(OBJS)
  5.  
  6. clean:
  7.     rm -f $(OBJS) testgl
  8.