blob: 21994de754675777a7a9c0217910a7a39d9b38d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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 *~
|