diff --git a/programs/demos/SDL/Makefile b/programs/demos/SDL/Makefile new file mode 100755 index 000000000..a0b1ab064 --- /dev/null +++ b/programs/demos/SDL/Makefile @@ -0,0 +1,21 @@ +CC = kos32-gcc +LD = kos32-ld + +SDK_DIR = ../../../contrib/sdk +LDFLAGS = -nostdlib -static --image-base 0 -T $(SDK_DIR)/sources/newlib/app.lds + +CFLAGS = -c -fno-ident -O2 -fomit-frame-pointer -fno-ident -U__WIN32__ -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32 + +INCLUDES = -I $(SDK_DIR)/sources/newlib/libc/include -I $(SDK_DIR)/sources/libpng/ -I $(SDK_DIR)/sources/zlib -I $(SDK_DIR)/sources/freetype/include -I $(SDK_DIR)/sources/freetype/include -I $(SDK_DIR)/sources/SDL-1.2.2/include/ +LIBPATH = -L $(SDK_DIR)/lib -L /home/autobuild/tools/win32/mingw32/lib + +default: SDL-demo + +SDL-demo: $(OBJECTS) Makefile + $(CC) $(CFLAGS) $(INCLUDES) -o SDLTest.o SDLTest.c + $(LD) $(LDFLAGS) $(LIBPATH) --subsystem native -o SDLTest SDLTest.o -lgcc -lSDL -lc.dll -lc_ -lsound # -lc_ is a menuetlibc libc, not newlib. Write you lib name + kos32-strip -s SDLTest -o SDLTest + objcopy SDLTest -O binary + rm SDLTest.o +clean: + rm SDLTest diff --git a/programs/demos/SDL/SDLTest.c b/programs/demos/SDL/SDLTest.c index b5cb68e02..3748305d7 100644 --- a/programs/demos/SDL/SDLTest.c +++ b/programs/demos/SDL/SDLTest.c @@ -8,6 +8,10 @@ objcopy -O binary sdltest Now sdltest is your binary to run on Kolibri for SDL Demo. +-- ashmew2 + +You can found Makefile +-- maxcodehack */ #include