From: Jens Axboe Date: Wed, 8 Oct 2014 02:43:04 +0000 (-0600) Subject: Makefile: fix gfio link for CONFIG_ARITHMETIC X-Git-Tag: fio-2.1.14~87 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=7efff409c0679bd3cf0ac2c6efade8955249c724 Makefile: fix gfio link for CONFIG_ARITHMETIC Signed-off-by: Jens Axboe --- diff --git a/Makefile b/Makefile index 3f8be4f7..5b03ec42 100644 --- a/Makefile +++ b/Makefile @@ -159,13 +159,14 @@ OBJS = $(SOURCE:.c=.o) FIO_OBJS = $(OBJS) fio.o +GFIO_OBJS = $(OBJS) gfio.o graph.o tickmarks.o ghelpers.o goptions.o gerror.o \ + gclient.o gcompat.o cairo_text_helpers.o printing.o + ifdef CONFIG_ARITHMETIC FIO_OBJS += lex.yy.o y.tab.o +GFIO_OBJS += lex.yy.o y.tab.o endif -GFIO_OBJS = $(OBJS) gfio.o graph.o tickmarks.o ghelpers.o goptions.o gerror.o \ - gclient.o gcompat.o cairo_text_helpers.o printing.o - -include $(OBJS:.o=.d) T_SMALLOC_OBJS = t/stest.o