Mercurial > lcfOS
view cos/hello/Makefile @ 410:6aa9743ed362 tip
Reflect change in c3 public modifier
author | Windel Bouwman |
---|---|
date | Mon, 23 Feb 2015 21:06:04 +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 $<