[PATCH] Link in known io engines
[fio.git] / engines / Makefile
diff --git a/engines/Makefile b/engines/Makefile
deleted file mode 100644 (file)
index 963a93e..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-CC     = gcc
-CFLAGS = -W -Wall -O2 -g -shared -rdynamic -fPIC
-ALL_CFLAGS = $(CFLAGS) -I.. -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
-OBJS   = fio-engine-sync.o fio-engine-splice.o fio-engine-mmap.o fio-engine-libaio.o fio-engine-posixaio.o fio-engine-sg.o fio-engine-cpu.o
-
-all: depend $(OBJS)
-
-depend:
-       @$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend
-
-clean:
-       -rm -f *.o $(OBJS) .depend
-
-%.o: %.c
-       $(CC) $(ALL_CFLAGS) -o $*.o $<
-
-fio-engine-libaio.o: fio-engine-libaio.c
-       $(CC) $(ALL_CFLAGS) -laio -o $*.o $<
-
-fio-engine-posixaio.o: fio-engine-posixaio.c
-       $(CC) $(ALL_CFLAGS) -lrt -o $*.o $<
-
-ifneq ($(wildcard .depend),)
-include .depend
-endif