# set if the target is an app
CC=gcc
TARGET=tester
LIBS=-lstdio -lname -lservices

L_OBJS=crt0s.o
O_OBJS=main.o
SUBDIRS=

.EXPORT_ALL_VARIABLES:

INCLUDE = -I$(shell pwd)/include

EXTRA_CFLAGS = -Wall 
EXTRA_LDFLAGS =  -Bstatic -Ttext 0x02060000 

world:	all $(TARGET)

all:
	for i in $(SUBDIRS); do \
		$(MAKE) -C $$i; \
	done;


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



