X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=Makefile.FreeBSD;h=e3144e9b17000114efee4f457b560c286750ffd1;hb=6839616ff2ac013c8b0fbeb2a97f6cf20976b9f3;hp=b862820510166cf36dd13cb2ab69aa95513fd41c;hpb=f8fe35e8c9e88dd681ea151251d75f6116a958b4;p=fio.git diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD index b8628205..e3144e9b 100644 --- a/Makefile.FreeBSD +++ b/Makefile.FreeBSD @@ -1,34 +1,47 @@ CC = gcc -CFLAGS = -Wall -O2 -g -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 +CFLAGS = -Wall -O2 -g -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DFIO_INC_DEBUG 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 fifo.o smalloc.o filehash.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 OBJS += engines/posixaio.o OBJS += engines/sync.o OBJS += engines/null.o +OBJS += engines/net.o -all: depend $(PROGS) $(SCRIPTS) +INSTALL = install +prefix = /usr/local +bindir = $(prefix)/bin +mandir = $(prefix)/man +%.o: %.c + $(CC) -o $*.o -c $(CFLAGS) $< fio: $(OBJS) $(CC) $(CFLAGS) -o $@ $(OBJS) -lpthread -lm -ldl -lrt +all: depend $(PROGS) $(SCRIPTS) + clean: - -rm -f *.o .depend cscope.out $(PROGS) + -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o lib/*.o core.* core depend: - @$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend + @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend cscope: @cscope -b -INSTALL = install -prefix = /usr/local -bindir = $(prefix)/bin - install: $(PROGS) $(SCRIPTS) $(INSTALL) -m755 -d $(DESTDIR)$(bindir) $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)