X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=Makefile;h=13a6b8a34c2624d9ffcb91d4a08fc2220ca32f6f;hb=4896473eb0c69d870c41a6a679765d2d5f03e199;hp=15455052a7011857f619c0938875d761a96da103;hpb=9ad8da8217db155d2b48fe7bed91da794a71d071;p=fio.git diff --git a/Makefile b/Makefile index 15455052..13a6b8a3 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ SCRIPTS = fio_generate_plots SOURCE := gettime.c fio.c ioengines.c init.c stat.c log.c time.c filesetup.c \ eta.c verify.c memory.c io_u.c parse.c mutex.c options.c \ - rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \ + lib/rbtree.c smalloc.c filehash.c profile.c debug.c lib/rand.c \ lib/num2str.c lib/ieee754.c $(wildcard crc/*.c) engines/cpu.c \ engines/mmap.c engines/sync.c engines/null.c engines/net.c \ memalign.c server.c client.c iolog.c backend.c libfio.c flow.c \ @@ -167,7 +167,11 @@ ifndef V endif endif -INSTALL = install +ifeq ($(CONFIG_TARGET_OS), SunOS) + INSTALL = ginstall +else + INSTALL = install +endif prefix = /usr/local bindir = $(prefix)/bin