X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=Makefile;h=6af29a34b0d120f5bba49aaadef6bc086ebbb786;hp=2b027dbdb42ce5a69c007358a995f5d47ad5befe;hb=1e531487b1f0cc72db9c94b435cd4b19427d6177;hpb=a4f4fdd7c9e46a50bc33ecef44d9f06036580ad4 diff --git a/Makefile b/Makefile index 2b027dbd..6af29a34 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC = gcc -W DEBUGFLAGS = -D_FORTIFY_SOURCE=2 OPTFLAGS= -O2 -g -CFLAGS = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) +CFLAGS = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) -rdynamic 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 \ @@ -22,7 +22,6 @@ OBJS += engines/syslet-rw.o INSTALL = install prefix = /usr/local bindir = $(prefix)/bin -libdir = $(prefix)/lib/fio all: $(PROGS) $(SCRIPTS) @@ -30,10 +29,10 @@ fio: $(OBJS) $(CC) $(CFLAGS) -o $@ $(filter %.o,$^) -lpthread -lm -ldl -laio -lrt clean: - -rm -f *.o .depend cscope.out $(PROGS) engines/*.o + -rm -f *.o .depend cscope.out $(PROGS) engines/*.o core.* core depend: - @$(CC) -MM $(ALL_CFLAGS) *.c 1> .depend + @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c 1> .depend cscope: @cscope -b