home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Input / smakefile < prev    next >
Encoding:
Makefile  |  1996-03-20  |  251 b   |  13 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all: Set_Mouse Swap_Buttons
  4.  
  5. Set_Mouse: Set_Mouse.c
  6.     sc link $(CFLAGS) $@
  7.  
  8. Swap_Buttons: Swap_Buttons.c inputhandler.a
  9.     sc link $(CFLAGS) Swap_Buttons.c inputhandler.a
  10.  
  11. clean:
  12.     -delete \#?.(o|lnk)
  13.