home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff287.lzh / OSK / makefile < prev    next >
Makefile  |  1989-12-06  |  148b  |  11 lines

  1. CFLAGS = +L -S +Iinclude.dmp
  2. LFLAGS = +Cd
  3.  
  4. OBJS = main.o data.o image.o
  5.  
  6. .c.o:
  7.     cc $(CFLAGS) $*.c
  8.  
  9. OSK : $(OBJS)
  10.     ln $(LFLAGS) -O OSK $(OBJS) -Lc32
  11.