Restructuring: move file format implementations to formats/

This commit is contained in:
Daniel Beer 2011-09-14 16:11:47 +12:00
parent 7f4fdfb4f2
commit 7715e45af4
16 changed files with 8 additions and 8 deletions

View File

@ -51,7 +51,7 @@ else
BINARY = mspdebug BINARY = mspdebug
endif endif
INCLUDES = -I. -Isimio INCLUDES = -I. -Isimio -Iformats
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)
@ -81,13 +81,10 @@ OBJ=\
dis.o \ dis.o \
uif.o \ uif.o \
olimex.o \ olimex.o \
ihex.o \
elf32.o \
stab.o \ stab.o \
util.o \ util.o \
bsl.o \ bsl.o \
sim.o \ sim.o \
symmap.o \
gdb.o \ gdb.o \
btree.o \ btree.o \
rtools.o \ rtools.o \
@ -98,13 +95,9 @@ OBJ=\
output_util.o \ output_util.o \
expr.o \ expr.o \
fet_error.o \ fet_error.o \
binfile.o \
fet_db.o \ fet_db.o \
usbutil.o \ usbutil.o \
titext.o \
srec.o \
device.o \ device.o \
coff.o \
opdb.o \ opdb.o \
output.o \ output.o \
cmddb.o \ cmddb.o \
@ -112,6 +105,13 @@ OBJ=\
prog.o \ prog.o \
flash_bsl.o \ flash_bsl.o \
list.o \ list.o \
formats/binfile.o \
formats/coff.o \
formats/elf32.o \
formats/ihex.o \
formats/symmap.o \
formats/srec.o \
formats/titext.o \
simio/simio.o \ simio/simio.o \
simio/simio_tracer.o \ simio/simio_tracer.o \
simio/simio_timer.o \ simio/simio_timer.o \