kolibrios-fun/contrib/sdk/samples/hello/Makefile.static

26 lines
633 B
Makefile
Raw Normal View History

# static linking
CC = kos32-gcc
LD = kos32-ld
CONTRIB_DIR = $(abspath ../../..)
SDK_DIR = $(CONTRIB_DIR)/sdk
CFLAGS = -c -fno-ident -O2 -fomit-frame-pointer -U__WIN32__ -U_Win32 -U_WIN32 -U__MINGW32__ -UWIN32
LDFLAGS = -static -Tapp-static.lds
INCLUDES = -I $(SDK_DIR)/sources/newlib/libc/include
LIBPATH = -L $(SDK_DIR)/lib
SOURCES = hello.c
OBJECTS = $(patsubst %.c, %.o, $(SOURCES))
default: hello
hello: $(OBJECTS) Makefile.static
$(LD) $(LDFLAGS) $(LIBPATH) -o hello $(OBJECTS) -lc -lgcc -lc
objcopy hello -O binary
%.o : %.c Makefile.static $(SOURCES)
$(CC) $(CFLAGS) $(INCLUDES) -o $@ $<