From 1bd0f4861b9cfab67d9079d453cb7c1df06a976b Mon Sep 17 00:00:00 2001 From: maxcodehack Date: Mon, 16 Nov 2020 09:28:12 +0000 Subject: [PATCH] Add makefile to SDL example Fix SDL makefile git-svn-id: svn://kolibrios.org@8200 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/demos/SDL/Makefile | 21 +++++++++++++++++++++ programs/demos/SDL/SDLTest.c | 4 ++++ 2 files changed, 25 insertions(+) create mode 100755 programs/demos/SDL/Makefile diff --git a/programs/demos/SDL/Makefile b/programs/demos/SDL/Makefile new file mode 100755 index 0000000000..a0b1ab064a --- /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 b5cb68e02a..3748305d78 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