423ba10303
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
24 lines
447 B
Text
24 lines
447 B
Text
#
|
|
# cinit
|
|
# Nico Schottelius
|
|
#
|
|
# Don't edit Makefiles, use conf/* for configuration.
|
|
#
|
|
|
|
#
|
|
# compile/link options
|
|
#
|
|
# do not use DEBUG and OPTIMIZE at the same time!
|
|
#DEBUG=-DDEBUG
|
|
OPTIMIZE=-Werror
|
|
#DEBUG=-g -DDEBUG
|
|
OPTIMIZE=-pipe -Os -Werror
|
|
|
|
# init should be static per default! - but not the other programs!
|
|
CINIT_LDFLAGS=-static
|
|
|
|
# programs
|
|
CC=gcc $(DEBUG) $(OPTIMIZE) $(TIMEME)
|
|
CFLAGS=-Wall -I.
|
|
LD=gcc
|
|
STRIP=strip -R .comment -R .note
|