view TaskManager/Makefile.fifo @ 109:028ffc9c0375 draft

Cerium cvs version
author gongo@gendarme.local
date Wed, 12 Nov 2008 17:39:33 +0900
parents 1c648675c2bd
children 93b33cecba37
line wrap: on
line source

include ./Makefile.def

TARGET = libFifoManager.a

.SUFFIXES: .cc .o

EXTRA_CFLAGS = -D__CERIUM_FIFO__

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

all: default
default: $(TARGET)

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

$(TARGET): $(ALL_OBJS)
	ar crus $@ $(ALL_OBJS)

fifodistclean: fifoclean
	rm -f $(TARGET)

fifoclean: