From 88c102b993d64fa9b74af6c1a74f992480d1d9a3 Mon Sep 17 00:00:00 2001 From: Greg King Date: Sun, 23 Jun 2013 11:47:45 -0400 Subject: [PATCH] Renamed the mouse sample program because it also tests the mouse library. --- samples/Makefile | 8 ++++---- samples/README | 4 ++-- samples/{mousedemo.c => mousetest.c} | 0 3 files changed, 6 insertions(+), 6 deletions(-) rename samples/{mousedemo.c => mousetest.c} (100%) diff --git a/samples/Makefile b/samples/Makefile index 046eb8fc9..327adc482 100644 --- a/samples/Makefile +++ b/samples/Makefile @@ -78,7 +78,7 @@ EXELIST = ascii \ gunzip65 \ hello \ mandelbrot \ - mousedemo \ + mousetest \ multdemo \ nachtm \ ovrldemo \ @@ -115,12 +115,12 @@ mandelbrot: mandelbrot.o endif endif -# The Apple ][ needs the start address adjusted for the mousedemo +# The Apple ][ needs the start address adjusted for the mousetest ifeq "$(SYS)" "apple2" -mousedemo: mousedemo.o +mousetest: mousetest.o @$(LD) -t $(SYS) -m $(basename $@).map --start-addr 0x4000 -o $@ $^ $(CLIB) else -mousedemo: mousedemo.o +mousetest: mousetest.o endif multdemo: multidemo.o diff --git a/samples/README b/samples/README index 25ee43118..5997fc8d0 100644 --- a/samples/README +++ b/samples/README @@ -69,8 +69,8 @@ Platforms: Runs on all platforms that have TGI support: Apple ][, C64, C128, Oric Atmos, Geos and Lynx. ----------------------------------------------------------------------------- -Name: mousedemo -Description: Shows how to use the mouse. +Name: mousetest +Description: Tests and shows how to use the mouse. Platforms: All systems with mouse and conio support: C64, C128, CBM510, Atari, Apple ][ diff --git a/samples/mousedemo.c b/samples/mousetest.c similarity index 100% rename from samples/mousedemo.c rename to samples/mousetest.c -- 2.39.5