Subversion Repositories Kolibri OS

Compare Revisions

No changes between revisions

Regard whitespace Rev 8199 → Rev 8200

/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
Property changes:
Added: svn:executable
+*
\ No newline at end of property
/programs/demos/SDL/SDLTest.c
8,6 → 8,10
 
Now sdltest is your binary to run on Kolibri for SDL Demo.
 
-- ashmew2
 
You can found Makefile
-- maxcodehack
*/
 
#include <stdio.h>