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


  31 PROG =          troff ta makedev
  32 
  33 SUBDIRS =       tmac.d
  34 
  35 TAOBJS =        draw.o ta.o
  36 MAKEDEVOBJS =   makedev.o
  37 TROFFOBJS =     t10.o t6.o
  38 COMMONOBJS =    hytab.o n1.o n2.o n3.o n4.o n5.o                \
  39                 n7.o n8.o n9.o ni.o nii.o suftab.o
  40 
  41 SRCS =          $(TAOBJS:%.o=%.c) $(MAKEDEVOBJS:%.o=%.c)        \
  42                 $(TROFFOBJS:%.o=%.c) $(COMMONOBJS:%.o=../%.c)
  43 
  44 TXTS =          README maketables troff.sh
  45 
  46 CPPFLAGS =      -DUSG -DINCORE -I. -I.. $(CPPFLAGS.master)
  47 
  48 CERRWARN +=     -_gcc=-Wno-implicit-function-declaration
  49 CERRWARN +=     -_gcc=-Wno-unused-variable
  50 CERRWARN +=     -_gcc=-Wno-parentheses
  51 CERRWARN +=     -_gcc=-Wno-uninitialized
  52 CERRWARN +=     -_gcc=-Wno-extra
  53 
  54 # "parse error: parsing (i (9223372034707292160-96) >= 65)"
  55 SMATCH =        off
  56 
  57 #
  58 # For message catalog
  59 #
  60 POFILES= $(TROFFOBJS:%.o=%.po) $(COMMONOBJS:%.o=../%.po)
  61 POFILE= troff.d.po
  62 
  63 # conditional assignments
  64 
  65 all :=          TARGET= all
  66 install :=      TARGET= install
  67 clean :=        TARGET= clean
  68 clobber :=      TARGET= clobber
  69 lint :=         TARGET= lint
  70 strip :=        TARGET= strip
  71 




  31 PROG =          troff ta makedev
  32 
  33 SUBDIRS =       tmac.d
  34 
  35 TAOBJS =        draw.o ta.o
  36 MAKEDEVOBJS =   makedev.o
  37 TROFFOBJS =     t10.o t6.o
  38 COMMONOBJS =    hytab.o n1.o n2.o n3.o n4.o n5.o                \
  39                 n7.o n8.o n9.o ni.o nii.o suftab.o
  40 
  41 SRCS =          $(TAOBJS:%.o=%.c) $(MAKEDEVOBJS:%.o=%.c)        \
  42                 $(TROFFOBJS:%.o=%.c) $(COMMONOBJS:%.o=../%.c)
  43 
  44 TXTS =          README maketables troff.sh
  45 
  46 CPPFLAGS =      -DUSG -DINCORE -I. -I.. $(CPPFLAGS.master)
  47 
  48 CERRWARN +=     -_gcc=-Wno-implicit-function-declaration
  49 CERRWARN +=     -_gcc=-Wno-unused-variable
  50 CERRWARN +=     -_gcc=-Wno-parentheses
  51 CERRWARN +=     $(CNOWARN_UNINIT)
  52 CERRWARN +=     -_gcc=-Wno-extra
  53 
  54 # "parse error: parsing (i (9223372034707292160-96) >= 65)"
  55 SMATCH =        off
  56 
  57 #
  58 # For message catalog
  59 #
  60 POFILES= $(TROFFOBJS:%.o=%.po) $(COMMONOBJS:%.o=../%.po)
  61 POFILE= troff.d.po
  62 
  63 # conditional assignments
  64 
  65 all :=          TARGET= all
  66 install :=      TARGET= install
  67 clean :=        TARGET= clean
  68 clobber :=      TARGET= clobber
  69 lint :=         TARGET= lint
  70 strip :=        TARGET= strip
  71