view TaskManager/Makefile.fifo @ 80:1c648675c2bd

*** empty log message ***
author gongo
date Wed, 20 Feb 2008 10:56:37 +0900
parents aa11038dbdc1
children 5c194c71eca8
line wrap: on
line source

include ./Makefile.def

TARGET = libFifoManager.a


.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): $(ALL_OBJS)
	ar crus $@ $(ALL_OBJS)

fifodistclean: fifoclean
	rm -f $(TARGET)

fifoclean: