view TaskManager/Makefile.fifo @ 42:aa11038dbdc1

*** empty log message ***
author gongo
date Thu, 14 Feb 2008 18:27:37 +0900
parents 2356238ebea7
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)