root@Pogoplug /home/sda3 > svn checkout https://github.com/oscam-emu/OSEmu/trunk OSEmu
A OSEmu/Makefile
A OSEmu/OSEmu.c
A OSEmu/README
A OSEmu/aes.c
A OSEmu/aes.h
A OSEmu/des.c
A OSEmu/des.h
A OSEmu/emulator.c
A OSEmu/emulator.h
A OSEmu/globals.h
A OSEmu/helpfunctions.c
A OSEmu/helpfunctions.h
A OSEmu/md5.c
A OSEmu/md5.h
Ausgecheckt, Revision 26.
root@Pogoplug /home/sda3 > cd OSEmu/
root@Pogoplug /home/sda3/OSEmu > make
gcc -c -o aes.o aes.c -I.
gcc -MM -I. aes.c > aes.d
gcc -c -o des.o des.c -I.
gcc -MM -I. des.c > des.d
gcc -c -o md5.o md5.c -I.
gcc -MM -I. md5.c > md5.d
gcc -c -o helpfunctions.o helpfunctions.c -I.
gcc -MM -I. helpfunctions.c > helpfunctions.d
gcc -c -o emulator.o emulator.c -I.
gcc -MM -I. emulator.c > emulator.d
gcc -c -o OSEmu.o OSEmu.c -I.
gcc -MM -I. OSEmu.c > OSEmu.d
gcc -O2 -o OSEmu aes.o des.o md5.o helpfunctions.o emulator.o OSEmu.o -I.
strip OSEmu
strip OSEmu
root@Pogoplug /home/sda3/OSEmu >