X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=Makefile.FreeBSD;h=7eb3ed10821a188962bc8247d79d55263fd69eb5;hb=96d32d518a0743a6c050057bc1562e4883e51c5d;hp=b862820510166cf36dd13cb2ab69aa95513fd41c;hpb=f8fe35e8c9e88dd681ea151251d75f6116a958b4;p=fio.git diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD index b8628205..7eb3ed10 100644 --- a/Makefile.FreeBSD +++ b/Makefile.FreeBSD @@ -3,13 +3,14 @@ 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 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 +21,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