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:
maxcodehack 2020-11-16 09:28:12 +00:00
parent 2e185e713d
commit 1bd0f4861b
2 changed files with 25 additions and 0 deletions

21
programs/demos/SDL/Makefile Executable file
View 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

View File

@ -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 <stdio.h>