1
0
Fork 0
forked from len0rd/rockbox

remove these 2 also

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11341 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2006-10-25 14:32:11 +00:00
parent e48a035409
commit d13038d704
2 changed files with 0 additions and 41 deletions

View file

@ -1,32 +0,0 @@
OBJECTS = main.o db.o array_buffer.o unique.o malloc.o \
header.o artist.o album.o song.o file.o \
tag_dummy.o
all : tagdb parser
tagdb : $(OBJECTS)
$(CC) -o tagdb $(OBJECTS)
parser: parser.o malloc.o
$(CC) -o parser parser.o malloc.o
main.o : main.c config.h
db.o : db.c db.h config.h
array_buffer.o : array_buffer.c array_buffer.h config.h
unique.o : unique.c unique.h
malloc.o : malloc.c malloc.h config.h
header.o : header.c header.h config.h
artist.o : artist.c artist.h config.h
album.o : album.c album.h config.h
song.o : song.c song.h config.h
file.o : file.c file.h config.h
tag_dummy.o : tag_dummy.c tag_dummy.h config.h
parser.o : parser.c config.h
clean :
rm -rf *.o tagdb parser

View file

@ -1,9 +0,0 @@
The code is currently a working mess... needs cleanup
also it should be transformed into rockbox-format (header in each file).
things that work:
* DB creation
things that don't work (yet)
* Sorting
* reading files to parse the tags