Add files

git-svn-id: svn://kolibrios.org@8181 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
maxcodehack 2020-11-12 19:17:03 +00:00
parent 39ccc72a15
commit 4ecba2d480
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,26 @@
CC = kos32-gcc
LD = kos32-ld
SDK_DIR = $(abspath ../..)
LDFLAGS = -call_shared -nostdlib -T $(SDK_DIR)/sources/newlib/app-dynamic.lds --image-base 0
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/libstdc++-v3/include
LIBPATH = -L $(SDK_DIR)/lib -L /home/autobuild/tools/win32/mingw32/lib
SOURCES = hello.cpp \
$(NULL)
OBJECTS = $(patsubst %.cpp, %.o, $(SOURCES))
default: hello
hello: $(OBJECTS) Makefile
$(LD) $(LDFLAGS) $(LIBPATH) --subsystem console -o hello.kex $(OBJECTS) -lc.dll -lstdc++ -lsupc++ -lgcc -lc
objcopy hello.kex -O binary
rm *.o
%.o : %.cpp Makefile $(SOURCES)
$(CC) $(CFLAGS) $(INCLUDES) -o $@ $<

View File

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, KolibriOS!\n";
return 0;
}