X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=Makefile.aix;h=fd49e0603beab90d1e3ec7ac6157dfdde85a33fa;hp=32d22a33d78917fbefe8fdc0b19ab1e2a7929baa;hb=9b8365618309572d8fd2579c8ea3132db89f843f;hpb=e4db9fec06d77523472e9fad6de5170a77d715c0 diff --git a/Makefile.aix b/Makefile.aix index 32d22a33..fd49e060 100644 --- a/Makefile.aix +++ b/Makefile.aix @@ -1,37 +1,21 @@ CC = gcc DEBUGFLAGS = -D_FORTIFY_SOURCE=2 -DFIO_INC_DEBUG -OPTFLAGS= -O2 -g $(EXTFLAGS) -CFLAGS = -Wwrite-strings -Wall -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(DEBUGFLAGS) -fno-omit-frame-pointer -D_LARGE_FILES -D__ppc__ +CPPFLAGS= -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 \ + -D_LARGE_FILES -D__ppc__ $(DEBUGFLAGS) +OPTFLAGS= -O2 -fno-omit-frame-pointer -g +CFLAGS = -std=gnu99 -Wwrite-strings -Wall $(OPTFLAGS) -rdynamic +LIBS = -lpthread -lm -ldl -lrt 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 fifo.o smalloc.o filehash.o helpers.o \ - profile.o debug.o -OBJS += lib/rand.o -OBJS += lib/getopt_long.o -OBJS += lib/num2str.o +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 \ + fifo.c smalloc.c filehash.c helpers.c profile.c debug.c lib/rand.c \ + lib/getopt_long.c lib/num2str.c $(wildcard crc/*.c) engines/cpu.c \ + engines/mmap.c engines/posixaio.c engines/sync.c engines/null.c \ + engines/net.c profiles/tiobench.c -OBJS += crc/crc7.o -OBJS += crc/crc16.o -OBJS += crc/crc32.o -OBJS += crc/crc32c.o -OBJS += crc/crc32c-intel.o -OBJS += crc/crc64.o -OBJS += crc/sha1.o -OBJS += crc/sha256.o -OBJS += crc/sha512.o -OBJS += crc/md5.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 - -OBJS += profiles/tiobench.o +OBJS = $(SOURCE:.c=.o) ifneq ($(findstring $(MAKEFLAGS),s),s) ifndef V @@ -45,13 +29,14 @@ prefix = /usr/local bindir = $(prefix)/bin mandir = $(prefix)/man -%.o: %.c - $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $< +.c.o: + $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) $(CPPFLAGS) $< + fio: $(OBJS) - $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -ldl -lrt + $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(LIBS) $(OBJS) depend: - $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend + $(QUIET_DEP)$(CC) -MM $(CFLAGS) $(CPPFLAGS) $(SOURCE) 1> .depend $(PROGS): depend