Subversion Repositories Kolibri OS

Compare Revisions

No changes between revisions

Regard whitespace Rev 8180 → Rev 8181

/contrib/sdk/samples/cpp_hello/Makefile
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 $@ $<
Property changes:
Added: svn:executable
+*
\ No newline at end of property
/contrib/sdk/samples/cpp_hello/hello.cpp
0,0 → 1,9
#include <iostream>
 
using namespace std;
 
int main()
{
cout << "Hello, KolibriOS!\n";
return 0;
}
Property changes:
Added: svn:executable
+*
\ No newline at end of property