forked from KolibriOS/kolibrios
903215408b
git-svn-id: svn://kolibrios.org@8518 a494cfbc-eb01-0410-851d-a64ba20cac60
28 lines
813 B
Makefile
Executable File
28 lines
813 B
Makefile
Executable File
CC = kos32-gcc
|
|
LD = kos32-ld
|
|
|
|
SDK_DIR = $(abspath ../..)
|
|
|
|
LDFLAGS = -static -nostdlib -T $(SDK_DIR)/sources/newlib/app.lds --image-base 0
|
|
|
|
CFLAGS = -c -fno-ident -O2 -fomit-frame-pointer -fno-ident -U__WIN32__ -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32 -Wno-pointer-arith
|
|
|
|
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) -lstdc++ -lsupc++ -lgcc -lc.dll
|
|
strip -s hello.kex -o hello.kex
|
|
objcopy hello.kex -O binary
|
|
rm *.o
|
|
|
|
%.o : %.cpp Makefile $(SOURCES)
|
|
$(CC) $(CFLAGS) $(INCLUDES) -o $@ $<
|