URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [ucos-ii/] [2.91/] [tasks/] [Makefile] - Rev 471
Compare with Previous | Blame | View Log
# User should set TASKS to determine which set to runifeq ($(TASKS),)$(error Must specify TASKS, eg. TASKS=1 when building to choose user task program)endifLIB = tasks.oOBJS = tasks$(TASKS).oall: $(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
