4b7e1e0945
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11748 a1c6a512-1295-4272-9138-f99709370657
11 lines
348 B
Makefile
11 lines
348 B
Makefile
all: ipodpatcher
|
|
|
|
ipodpatcher: ipodpatcher.c ipodio-posix.c parttypes.h
|
|
gcc -Wall -o ipodpatcher ipodpatcher.c ipodio-posix.c
|
|
|
|
ipodpatcher.exe: ipodpatcher.c ipodio-win32.c parttypes.h
|
|
i586-mingw32msvc-gcc -Wall -o ipodpatcher.exe ipodpatcher.c ipodio-win32.c
|
|
i586-mingw32msvc-strip ipodpatcher.exe
|
|
|
|
clean:
|
|
rm -f ipodpatcher.exe ipodpatcher *~
|