X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=Makefile;h=a1e339e39cbc46d369e5582425117b6db27b7654;hp=c2e75ddad53479bf474bad02e01111f66348a55e;hb=0b2d6a7a2bf9f49502b9c1161f376fff53727089;hpb=79e48f72dea1639bcbee310c354938287b6d5790 diff --git a/Makefile b/Makefile index c2e75dda..a1e339e3 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,8 @@ CFLAGS = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_ PROGS = fio SCRIPTS = fio_generate_plots 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 \ - diskutil.o fifo.o blktrace.o + eta.o verify.o memory.o io_u.o parse.o mutex.o sem.o options.o \ + rbtree.o diskutil.o fifo.o blktrace.o smalloc.o filehash.o OBJS += crc/crc7.o OBJS += crc/crc16.o @@ -29,33 +29,41 @@ OBJS += engines/net.o OBJS += engines/syslet-rw.o OBJS += engines/guasi.o +ifneq ($(findstring $(MAKEFLAGS),s),s) +ifndef V + QUIET_CC = @echo ' ' CC $@; + QUIET_DEP = @echo ' ' DEP $@; +endif +endif + INSTALL = install prefix = /usr/local bindir = $(prefix)/bin mandir = $(prefix)/man -all: $(PROGS) $(SCRIPTS) +ifneq ($(wildcard .depend),) +include .depend +endif +%.o: %.c + $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $< fio: $(OBJS) - $(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt + $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt + +depend: + $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.[ch] 1> .depend + +all: $(PROGS) $(SCRIPTS) depend clean: -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o core.* core -depend: - @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.[ch] 1> .depend - cscope: @cscope -b -$(PROGS): depend - install: $(PROGS) $(SCRIPTS) $(INSTALL) -m755 -d $(DESTDIR)$(bindir) $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir) $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1 $(INSTALL) -m 644 fio.1 $(DESTDIR)$(mandir)/man1 -ifneq ($(wildcard .depend),) -include .depend -endif