X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=Makefile.solaris;h=1e82158f46ba3bcfb83981c0c49cb0042f7501d1;hp=b487a05d9c89f2156f2e9dc942492d131197de1f;hb=0be06ea2c87ecf1751a01ed528a2d3170bdca543;hpb=02bcaa8c31feb93c61b701d143a7eea3efd2124d diff --git a/Makefile.solaris b/Makefile.solaris index b487a05d..1e82158f 100644 --- a/Makefile.solaris +++ b/Makefile.solaris @@ -5,21 +5,23 @@ 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/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