Mercurial > lcfOS
view cos/hello/Makefile @ 328:0bb16d2a5699
Added cool sphinx plugin for creation of unittest result table
author | Windel Bouwman |
---|---|
date | Tue, 04 Feb 2014 09:01:11 +0100 |
parents | 3a6a9b929db0 |
children |
line wrap: on
line source
# vim: set noexpandtab: CFLAGS = -m64 \ -nostdinc \ -nostdlib \ -nostartfiles \ -mno-red-zone \ -fno-builtin \ -mcmodel=large \ -Wall \ -Wextra \ -Werror hello.bin: hello.o liblcfos.o ld -T hello.ld -s -o hello.bin hello.o liblcfos.o %.o: %.c gcc $(CFLAGS) -o $@ -c $<