Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized


  27 #
  28 
  29 PROG:sh=        cd ..; basename `pwd`
  30 OBJS= $(PROG).o translate.o
  31 SRCS= $(OBJS:%.o=../%.c)
  32 
  33 include ../../Makefile.cmd
  34 
  35 INCS += -I../../../lib/libzpool/common
  36 INCS += -I../../../uts/common/fs/zfs
  37 INCS += -I../../../uts/common/fs/zfs/lua
  38 
  39 LDLIBS += -lzpool -lzfs -lnvpair
  40 
  41 CSTD=   $(CSTD_GNU99)
  42 C99LMODE=       -Xc99=%all
  43 
  44 CPPFLAGS.first = -I$(SRC)/lib/libfakekernel/common -D_FAKE_KERNEL
  45 CPPFLAGS += -D_LARGEFILE64_SOURCE=1 -D_REENTRANT $(INCS)
  46 
  47 CERRWARN += -_gcc=-Wno-uninitialized
  48 CERRWARN += -_gcc=-Wno-switch
  49 
  50 LINTFLAGS += -erroff=E_STATIC_UNUSED
  51 LINTFLAGS64 += -erroff=E_STATIC_UNUSED
  52 
  53 .KEEP_STATE:
  54 
  55 all: $(PROG)
  56 
  57 $(PROG): $(OBJS)
  58         $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
  59         $(POST_PROCESS)
  60 
  61 clean:
  62         $(RM) $(OBJS)
  63 
  64 lint:   lint_SRCS
  65 
  66 %.o: ../%.c
  67         $(COMPILE.c) $<


  27 #
  28 
  29 PROG:sh=        cd ..; basename `pwd`
  30 OBJS= $(PROG).o translate.o
  31 SRCS= $(OBJS:%.o=../%.c)
  32 
  33 include ../../Makefile.cmd
  34 
  35 INCS += -I../../../lib/libzpool/common
  36 INCS += -I../../../uts/common/fs/zfs
  37 INCS += -I../../../uts/common/fs/zfs/lua
  38 
  39 LDLIBS += -lzpool -lzfs -lnvpair
  40 
  41 CSTD=   $(CSTD_GNU99)
  42 C99LMODE=       -Xc99=%all
  43 
  44 CPPFLAGS.first = -I$(SRC)/lib/libfakekernel/common -D_FAKE_KERNEL
  45 CPPFLAGS += -D_LARGEFILE64_SOURCE=1 -D_REENTRANT $(INCS)
  46 
  47 CERRWARN += $(CNOWARN_UNINIT)
  48 CERRWARN += -_gcc=-Wno-switch
  49 
  50 LINTFLAGS += -erroff=E_STATIC_UNUSED
  51 LINTFLAGS64 += -erroff=E_STATIC_UNUSED
  52 
  53 .KEEP_STATE:
  54 
  55 all: $(PROG)
  56 
  57 $(PROG): $(OBJS)
  58         $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
  59         $(POST_PROCESS)
  60 
  61 clean:
  62         $(RM) $(OBJS)
  63 
  64 lint:   lint_SRCS
  65 
  66 %.o: ../%.c
  67         $(COMPILE.c) $<