URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [ucos-ii/] [2.91/] [tasks/] [Makefile] - Rev 587
Go to most recent revision | Compare with Previous | Blame | View Log
# User should set TASKS to determine which set to run
ifeq ($(TASKS),)
$(error Must specify TASKS, eg. TASKS=1 when building to choose user task program)
endif
LIB = tasks.o
OBJS = tasks$(TASKS).o
all: $(LIB)
$(LIB): $(OBJS)
$(LD) -r -o $@ $(OBJS)
# Depends too difficult to deal with here
.depend: Makefile
$(CC) -M $(CFLAGS) *.c > $@
sinclude .depend
#.depend: Makefile $(OBJS:.o=.c)
# $(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@
#sinclude .depend
Go to most recent revision | Compare with Previous | Blame | View Log