瀏覽代碼

Remove the totally obsolete Makefiles that are still wandering in the
src/drivers/ directory.

Cédric Augonnet 15 年之前
父節點
當前提交
4d75c11e35
共有 3 個文件被更改,包括 0 次插入92 次删除
  1. 0 31
      src/drivers/cpu/Makefile
  2. 0 29
      src/drivers/cuda/Makefile
  3. 0 32
      src/drivers/gordon/Makefile

+ 0 - 31
src/drivers/cpu/Makefile

@@ -1,31 +0,0 @@
-#
-# StarPU
-# Copyright (C) INRIA 2008-2009 (see AUTHORS file)
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License as published by
-# the Free Software Foundation; either version 2.1 of the License, or (at
-# your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-#
-# See the GNU Lesser General Public License in COPYING.LGPL for more details.
-#
-
-CFLAGS += -I../../
-
-OBJS := driver_cpu.o
-
-all: $(OBJS)
-
-ifeq ($(filter ${MAKECMDGOALS},clean distclean),)
-%.d: %.c
-	$(CC) $(CFLAGS) $< -MM -o $*.d
-
--include $(OBJS:.o=.d)
-endif
-
-clean:
-	@rm -f *.o *.d *.gcno *.gcda 

+ 0 - 29
src/drivers/cuda/Makefile

@@ -1,29 +0,0 @@
-#
-# StarPU
-# Copyright (C) INRIA 2008-2009 (see AUTHORS file)
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License as published by
-# the Free Software Foundation; either version 2.1 of the License, or (at
-# your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-#
-# See the GNU Lesser General Public License in COPYING.LGPL for more details.
-#
-
-CFLAGS += -I../../
-
-OBJS := driver_cuda.o
-
-ifeq ($(filter ${MAKECMDGOALS},clean distclean),)
-%.d: %.c
-	$(CC) $(CFLAGS) $< -MM -o $*.d
-
--include $(OBJS:.o=.d)
-endif
-
-clean:
-	@rm -f *.o *.d *.gcno *.gcda

+ 0 - 32
src/drivers/gordon/Makefile

@@ -1,32 +0,0 @@
-#
-# StarPU
-# Copyright (C) INRIA 2008-2009 (see AUTHORS file)
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License as published by
-# the Free Software Foundation; either version 2.1 of the License, or (at
-# your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-#
-# See the GNU Lesser General Public License in COPYING.LGPL for more details.
-#
-
-CFLAGS+= -Iexternals/scalp/
-CFLAGS+= -I../..
-
-OBJS := driver_gordon.o
-
-all: driver_gordon.o
-
-ifeq ($(filter ${MAKECMDGOALS},clean distclean),)
-%.d: %.c
-	$(CC) $(CFLAGS) $< -MM -o $*.d
-
--include $(OBJS:.o=.d)
-endif
-
-clean:   
-	@rm -f *.o *.d