From 84b61f35f23de6d3735851388d0da8540a08a949 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Thu, 11 Nov 2010 08:48:08 -0300 Subject: [PATCH] The Great ATSPI Renaming, part 3: rename libatspi.a to libatrf.a - tools/lib/atspi.c: renamed to atrf.c - tools/lib/Makefile (OBJS): track above change - tools/Makefile.common (LDLIBS), tools/lib/Makefile (LIB): rename the whole library from libatspi to libatrf --- tools/Makefile.common | 2 +- tools/lib/Makefile | 6 +++--- tools/lib/{atspi.c => atrf.c} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename tools/lib/{atspi.c => atrf.c} (100%) diff --git a/tools/Makefile.common b/tools/Makefile.common index 272afd7..00b71e0 100644 --- a/tools/Makefile.common +++ b/tools/Makefile.common @@ -44,5 +44,5 @@ endif CFLAGS += $(CFLAGS_$(TARGET)) -I../../atusb/fw/include -I../include \ $(MACROS_$(TARGET)) -LDLIBS = $(LDLIBS_$(TARGET)) -L../lib -latspi +LDLIBS = $(LDLIBS_$(TARGET)) -L../lib -latrf OBJS += $(OBJS_$(TARGET)) diff --git a/tools/lib/Makefile b/tools/lib/Makefile index 93219a3..693b55d 100644 --- a/tools/lib/Makefile +++ b/tools/lib/Makefile @@ -1,5 +1,5 @@ # -# lib/Makefile - Build the ATSPI library +# lib/Makefile - Build the ATRF library # # Written 2010 by Werner Almesberger # Copyright 2010 Werner Almesberger @@ -11,14 +11,14 @@ # -LIB = libatspi.a +LIB = libatrf.a include ../Makefile.common CFLAGS += -Wall -I$(F32XBASE)/include OBJS_host = atusb.o $(F32XBASE)/lib/usb.o OBJS_ben = atusd.o -OBJS = atspi.o misctxrx.o $(OBJS_$(TARGET)) +OBJS = atrf.o misctxrx.o $(OBJS_$(TARGET)) .PHONY: all clean spotless diff --git a/tools/lib/atspi.c b/tools/lib/atrf.c similarity index 100% rename from tools/lib/atspi.c rename to tools/lib/atrf.c