TARGET=hello
EXTRA_CFLAGS = -g -Wall # -D__DEBUG__
EXTRA_LDFLAGS = -static -e main
LIBS = -L$(SMROOT)/services/lib -lutils

O_OBJS = hello.o
L_OBJS =

all:	world
world:	$(TARGET)

include $(SMROOT)/Makeconf.$(USER)


