X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=Makefile.FreeBSD;h=8bb7ba3b60bced768327cdc36b7810152fc4f6d2;hp=5c85a0c35f878b4292360e64a9cd376b23f68255;hb=fc4398fdf45b76c3aa11e14e78fc41a1fb42eb7e;hpb=ed92ac0ce9ce1cc64697272d307d4fa7d18ed64c diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD index 5c85a0c3..8bb7ba3b 100644 --- a/Makefile.FreeBSD +++ b/Makefile.FreeBSD @@ -2,8 +2,17 @@ CC = gcc 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 +OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \ + eta.o verify.o memory.o io_u.o parse.o mutex.o options.o \ + rbtree.o + +OBJS += crc/crc7.o +OBJS += crc/crc16.o +OBJS += crc/crc32.o +OBJS += crc/crc64.o +OBJS += crc/sha256.o +OBJS += crc/sha512.o +OBJS += crc/md5.o OBJS += engines/cpu.o OBJS += engines/mmap.o @@ -21,7 +30,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