X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=Makefile.FreeBSD;h=334395b09ec414e5317693b31d2b815633a45646;hp=b862820510166cf36dd13cb2ab69aa95513fd41c;hb=a9a18a3f1b341c7025e63b47f706663cbf19836a;hpb=f8fe35e8c9e88dd681ea151251d75f6116a958b4 diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD index b8628205..334395b0 100644 --- a/Makefile.FreeBSD +++ b/Makefile.FreeBSD @@ -3,13 +3,15 @@ CFLAGS = -Wall -O2 -g -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 PROGS = fio SCRIPTS = fio_generate_plots OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o md5.o crc32.o \ - filesetup.o eta.o verify.o memory.o io_u.o parse.o + filesetup.o eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \ + rbtree.o OBJS += engines/cpu.o OBJS += engines/mmap.o OBJS += engines/posixaio.o OBJS += engines/sync.o OBJS += engines/null.o +OBJS += engines/net.o all: depend $(PROGS) $(SCRIPTS) @@ -20,7 +22,7 @@ clean: -rm -f *.o .depend cscope.out $(PROGS) depend: - @$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend + @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c 1> .depend cscope: @cscope -b