From: Jens Axboe Date: Fri, 30 May 2008 20:23:53 +0000 (+0200) Subject: More fixes to FreeBSD and Solaris Makefile X-Git-Tag: fio-1.21-rc4~20 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=b52ae0af85c640e6e4ebd412a731e9d5f97a6cc8;hp=00fb3c8dcbb940338fea9f6cab689b4924266305 More fixes to FreeBSD and Solaris Makefile Signed-off-by: Jens Axboe --- diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD index 6e0f530f..e3144e9b 100644 --- a/Makefile.FreeBSD +++ b/Makefile.FreeBSD @@ -1,5 +1,5 @@ CC = gcc -CFLAGS = -Wall -O2 -g -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 +CFLAGS = -Wall -O2 -g -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DFIO_INC_DEBUG PROGS = fio SCRIPTS = fio_generate_plots OBJS = gettime.o fio.o ioengines.o init.o stat.o log.o time.o filesetup.o \ @@ -21,24 +21,27 @@ OBJS += engines/sync.o OBJS += engines/null.o OBJS += engines/net.o -all: depend $(PROGS) $(SCRIPTS) +INSTALL = install +prefix = /usr/local +bindir = $(prefix)/bin +mandir = $(prefix)/man +%.o: %.c + $(CC) -o $*.o -c $(CFLAGS) $< fio: $(OBJS) $(CC) $(CFLAGS) -o $@ $(OBJS) -lpthread -lm -ldl -lrt +all: depend $(PROGS) $(SCRIPTS) + clean: - -rm -f *.o .depend cscope.out $(PROGS) + -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o lib/*.o core.* core depend: - @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c 1> .depend + @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c crc/*.c 1> .depend cscope: @cscope -b -INSTALL = install -prefix = /usr/local -bindir = $(prefix)/bin - install: $(PROGS) $(SCRIPTS) $(INSTALL) -m755 -d $(DESTDIR)$(bindir) $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir) diff --git a/Makefile.solaris b/Makefile.solaris index fbdef12c..bde0926f 100644 --- a/Makefile.solaris +++ b/Makefile.solaris @@ -21,8 +21,6 @@ OBJS += engines/sync.o OBJS += engines/null.o OBJS += engines/net.o -OBJS += lib/strsep.o - INSTALL = install prefix = /usr/local bindir = $(prefix)/bin