]> git.sur5r.net Git - cc65/blobdiff - libsrc/mouse/Makefile
Changed the mouse API: mouse_box is gone, there are now mouse_getbox and
[cc65] / libsrc / mouse / Makefile
index 47841ab8f76fbd9eac0fcc86d136cf12c4e3f905..cc0deca33f6cf5737b27a48eed8bf1d16eb9895b 100644 (file)
@@ -13,7 +13,7 @@ AS    = ../../src/ca65/ca65
 CC     = ../../src/cc65/cc65
 LD     = ../../src/ld65/ld65
 
-AFLAGS = -t $(SYS) -I../../asminc
+AFLAGS = -t $(SYS) --forget-inc-paths -I../../asminc       
 CFLAGS = -Osir -g -T -t $(SYS) --forget-inc-paths -I . -I ../../include
 
 #--------------------------------------------------------------------------
@@ -32,8 +32,8 @@ CFLAGS        = -Osir -g -T -t $(SYS) --forget-inc-paths -I . -I ../../include
 C_OBJS =
 
 S_OBJS =        mouse-kernel.o          \
-                mouse_box.o             \
                 mouse_buttons.o         \
+               mouse_getbox.o          \
                 mouse_geterrormsg.o     \
                 mouse_hide.o            \
                 mouse_info.o            \
@@ -41,6 +41,7 @@ S_OBJS =        mouse-kernel.o          \
                 mouse_load.o            \
                 mouse_move.o            \
                 mouse_pos.o             \
+                mouse_setbox.o          \
                 mouse_show.o            \
                 mouse_unload.o