home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 325.lha / OSK / makefile < prev    next >
Makefile  |  1989-12-28  |  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.