view TaskManager/Makefile.fifo @ 58:7492eb28b577

*** empty log message ***
author gongo
date Sat, 16 Feb 2008 19:40:20 +0900
parents aa11038dbdc1
children 1c648675c2bd
line wrap: on
line source

include ./Makefile.def

.SUFFIXES: .cpp .o

.cpp.o:
	$(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@

all: default
default: $(TARGET)

ALL_OBJS = $(KERN_PPE_OBJS) $(KERN_SCHED_OBJS) $(IMPL_FIFO_OBJS)

#$(TARGET): $(KERN_PPE_OBJS) $(KERN_SPE_OBJS) $(IMPL_FIFO_OBJS)
$(TARGET): $(ALL_OBJS)
	ar crus $@ $(ALL_OBJS)