Restructuring: move drivers into drivers/

This commit is contained in:
Daniel Beer 2011-09-14 16:15:37 +12:00
parent 7715e45af4
commit 6ac5c5a618
24 changed files with 12 additions and 12 deletions

View File

@ -51,7 +51,7 @@ else
BINARY = mspdebug BINARY = mspdebug
endif endif
INCLUDES = -I. -Isimio -Iformats INCLUDES = -I. -Isimio -Iformats -Idrivers
GCC_CFLAGS = -O1 -Wall -Wno-char-subscripts -ggdb $(INCLUDES) GCC_CFLAGS = -O1 -Wall -Wno-char-subscripts -ggdb $(INCLUDES)
MSPDEBUG_LDFLAGS = $(LDFLAGS) $(PORTS_LDFLAGS) MSPDEBUG_LDFLAGS = $(LDFLAGS) $(PORTS_LDFLAGS)
@ -76,15 +76,9 @@ install: $(BINARY) mspdebug.man
OBJ=\ OBJ=\
main.o \ main.o \
fet.o \
rf2500.o \
dis.o \ dis.o \
uif.o \
olimex.o \
stab.o \ stab.o \
util.o \ util.o \
bsl.o \
sim.o \
gdb.o \ gdb.o \
btree.o \ btree.o \
rtools.o \ rtools.o \
@ -94,17 +88,24 @@ OBJ=\
vector.o \ vector.o \
output_util.o \ output_util.o \
expr.o \ expr.o \
fet_error.o \
fet_db.o \
usbutil.o \ usbutil.o \
device.o \
opdb.o \ opdb.o \
output.o \ output.o \
cmddb.o \ cmddb.o \
stdcmd.o \ stdcmd.o \
prog.o \ prog.o \
flash_bsl.o \
list.o \ list.o \
drivers/device.o \
drivers/bsl.o \
drivers/fet.o \
drivers/fet_error.o \
drivers/fet_db.o \
drivers/flash_bsl.o \
drivers/gdbc.o \
drivers/olimex.o \
drivers/rf2500.o \
drivers/sim.o \
drivers/uif.o \
formats/binfile.o \ formats/binfile.o \
formats/coff.o \ formats/coff.o \
formats/elf32.o \ formats/elf32.o \
@ -120,7 +121,6 @@ OBJ=\
simio/simio_gpio.o \ simio/simio_gpio.o \
aliasdb.o \ aliasdb.o \
gdb_proto.o \ gdb_proto.o \
gdbc.o \
sport.o \ sport.o \
sockets.o \ sockets.o \