X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=Makefile.solaris;h=bde0926fd48c4fd01ad54cdf7cfe762635aa4f0d;hp=4373abfb9de09499e9b646f8572f1cac440a9291;hb=b52ae0af85c640e6e4ebd412a731e9d5f97a6cc8;hpb=ed92ac0ce9ce1cc64697272d307d4fa7d18ed64c diff --git a/Makefile.solaris b/Makefile.solaris index 4373abfb..bde0926f 100644 --- a/Makefile.solaris +++ b/Makefile.solaris @@ -1,9 +1,18 @@ 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 @@ -12,24 +21,24 @@ 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) -lc -lpthread -lm -laio -lrt -ldl + $(CC) $(CFLAGS) -o $@ $(OBJS) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt -lnsl -lsocket -clean: - -rm -f *.o .depend cscope.out $(PROGS) +all: $(PROGS) $(SCRIPTS) -depend: - @$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend +clean: + -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o lib/*.o core.* core cscope: @cscope -b -INSTALL = install -prefix = /usr/local -bindir = $(prefix)/bin - install: $(PROGS) $(SCRIPTS) $(INSTALL) -m755 -d $(DESTDIR)$(bindir) $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)