view TaskManager/Makefile.gpu @ 1910:b7b528e9ec5e draft

Implement divide read in word_count ( but cannot running )
author Masataka Kohagura <e085726@ie.u-ryukyu.ac.jp>
date Sun, 19 Jan 2014 22:54:01 +0900
parents a32179f5b743
children
line wrap: on
line source

include ./Makefile.def
TARGET = libGpuManager.a
CFLAGS += -DHAS_POSIX_MEMALIGN

ifdef LINUX
CFLAGS += -lrt
endif

.SUFFIXES: .cc .o

EXTRA_CFLAGS = -D__CERIUM_GPU__ -D__CERIUM_PARALLEL__

.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) $(KERN_MEM_OBJS) \
	$(IMPL_MANYCORE_OBJS) $(IMPL_GPU_OBJS) Cell/spe/SpeTaskManagerImpl.o Cell/CellTaskManagerImpl.o Gpu/GpuTaskManagerFactory.o

Makefile.dep: 
	make -f Makefile.gpu depend

depend:
	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) $(ALL_OBJS:.o=.cc) -MM  > Makefile.dep

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

gpudistclean: gpuclean
	rm -f $(TARGET)

gpuclean:
	rm -f $(TARGET) $(ALL_OBJS)