forked from KolibriOS/kolibrios
Add makefile to SDL example
Fix SDL makefile git-svn-id: svn://kolibrios.org@8200 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
2e185e713d
commit
1bd0f4861b
21
programs/demos/SDL/Makefile
Executable file
21
programs/demos/SDL/Makefile
Executable file
@ -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
|
@ -8,6 +8,10 @@ objcopy -O binary sdltest
|
|||||||
|
|
||||||
Now sdltest is your binary to run on Kolibri for SDL Demo.
|
Now sdltest is your binary to run on Kolibri for SDL Demo.
|
||||||
|
|
||||||
|
-- ashmew2
|
||||||
|
|
||||||
|
You can found Makefile
|
||||||
|
-- maxcodehack
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user