Add more context to the error messages
[fio.git] / Makefile.solaris
index b487a05d9c89f2156f2e9dc942492d131197de1f..1e82158f46ba3bcfb83981c0c49cb0042f7501d1 100644 (file)
@@ -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