X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=Makefile.solaris;h=fbdef12c45f3944fb869005a67b6b959efcb2faa;hb=5921e80c5dfc9f96d2f21da6ae58f2b5d3a0b373;hp=2f088b5f07fc732007b83c40500f3ea545456e63;hpb=d0c70934dde93a8ee260a84c1bf69ff24484d486;p=fio.git diff --git a/Makefile.solaris b/Makefile.solaris index 2f088b5f..fbdef12c 100644 --- a/Makefile.solaris +++ b/Makefile.solaris @@ -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,26 @@ OBJS += engines/sync.o OBJS += engines/null.o OBJS += engines/net.o -all: depend $(PROGS) $(SCRIPTS) +OBJS += lib/strsep.o +INSTALL = install +prefix = /usr/local +bindir = $(prefix)/bin +mandir = $(prefix)/man + +%.o: %.c + $(CC) -o $*.o -c $(CFLAGS) $< fio: $(OBJS) - $(CC) $(CFLAGS) -o $@ $(OBJS) -lc -lpthread -lm -laio -lrt -ldl + $(CC) $(CFLAGS) -o $@ $(OBJS) $(EXTLIBS) -lpthread -lm -ldl -laio -lrt -lnsl -lsocket -clean: - -rm -f *.o .depend cscope.out $(PROGS) +all: $(PROGS) $(SCRIPTS) -depend: - @$(CC) -MM $(ALL_CFLAGS) *.c engines/*.c 1> .depend +clean: + -rm -f *.o .depend cscope.out $(PROGS) engines/*.o crc/*.o lib/*.o core.* core cscope: @cscope -b -INSTALL = install -prefix = /usr/local -bindir = $(prefix)/bin - install: $(PROGS) $(SCRIPTS) $(INSTALL) -m755 -d $(DESTDIR)$(bindir) $(INSTALL) $(PROGS) $(SCRIPTS) $(DESTDIR)$(bindir)