1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-11-25 22:04:06 +02:00

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
This commit is contained in:
Werner Almesberger 2010-11-11 08:48:08 -03:00
parent 96b6a50b3a
commit 84b61f35f2
3 changed files with 4 additions and 4 deletions

View File

@ -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))

View File

@ -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