From 18f7edd1a5ce73d7366f9c860a04d0de1bf8a2c1 Mon Sep 17 00:00:00 2001 From: maxcodehack Date: Tue, 17 Nov 2020 07:13:55 +0000 Subject: [PATCH] Add SDL port to newlib git-svn-id: svn://kolibrios.org@8207 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/demos/SDL/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/programs/demos/SDL/Makefile b/programs/demos/SDL/Makefile index 605593234f..8ed29a2fba 100755 --- a/programs/demos/SDL/Makefile +++ b/programs/demos/SDL/Makefile @@ -6,14 +6,14 @@ 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/ +INCLUDES = -I $(SDK_DIR)/sources/newlib/libc/include -I $(SDK_DIR)/sources/SDL-1.2.2_newlib/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 -lc_ -lsound # -lc_ is a menuetlibc, -lc - newlib + $(LD) $(LDFLAGS) $(LIBPATH) --subsystem native -o SDLTest SDLTest.o -lgcc -lSDL -lc.dll -lc -lsound kos32-strip -s SDLTest -o SDLTest objcopy SDLTest -O binary rm SDLTest.o