X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=Makefile.solaris;h=a9512b72d583d373ab9b116c123ec8503c2d3ce0;hp=9eb2ebca3aa8bcbd2042861d1e1b8cb1b0aa7e69;hb=a31041eaf5a306b5f6ad3dd14b60da6212775037;hpb=a94ea28b13429c38036546c36bcfd7355dc1441d diff --git a/Makefile.solaris b/Makefile.solaris index 9eb2ebca..a9512b72 100644 --- a/Makefile.solaris +++ b/Makefile.solaris @@ -2,25 +2,35 @@ 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 += engines/fio-engine-cpu.o -OBJS += engines/fio-engine-mmap.o -OBJS += engines/fio-engine-posixaio.o -OBJS += engines/fio-engine-sync.o -OBJS += engines/fio-engine-null.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 +OBJS += engines/posixaio.o +OBJS += engines/sync.o +OBJS += engines/null.o +OBJS += engines/net.o all: depend $(PROGS) $(SCRIPTS) fio: $(OBJS) - $(CC) $(CFLAGS) -o $@ $(OBJS) -lc -lpthread -lm -laio -lrt + $(CC) $(CFLAGS) -o $@ $(OBJS) -lc -lpthread -lm -laio -lrt -ldl 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