diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-02-12 15:34:37 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-02-12 15:34:37 +0000 |
| commit | f27086d068b374d18770b790a5ba8deea177574f (patch) | |
| tree | 62b5d8f442cb0065d3f5f6c2a3a51aba8679002c /makeinclude.in | |
| parent | 86b5507486164da7cd7a71c6a688666ee3fb5d83 (diff) | |
Make sure menu item array is cleared to avoid uninitialized memory
accesses...
Fixes for manpage rules...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1369 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'makeinclude.in')
| -rw-r--r-- | makeinclude.in | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/makeinclude.in b/makeinclude.in index 78559737b..d31dceacc 100644 --- a/makeinclude.in +++ b/makeinclude.in @@ -1,5 +1,5 @@ # -# "$Id: makeinclude.in,v 1.7.2.9 2001/02/12 15:12:14 easysw Exp $" +# "$Id: makeinclude.in,v 1.7.2.10 2001/02/12 15:34:37 easysw Exp $" # # Make include file for the Fast Light Tool Kit (FLTK). # @configure_input@ @@ -58,6 +58,10 @@ DSOCOMMAND =@DSOCOMMAND@ LDLIBS =@LDFLAGS@ @LIBS@ -lX11 -lXext @X_EXTRA_LIBS@ -lm GLDLIBS =@LDFLAGS@ @LIBS@ @GLLIB@ -lX11 -lXext @X_EXTRA_LIBS@ -lm +# Man page extensions... +CAT1EXT =@CAT1EXT@ +CAT3EXT =@CAT3EXT@ + # Be quiet when building... .SILENT: @@ -78,16 +82,16 @@ GLDLIBS =@LDFLAGS@ @LIBS@ @GLLIB@ -lX11 -lXext @X_EXTRA_LIBS@ -lm .man.0 .man.1 .man.3: echo Formatting $<... - $(RM) $@ + rm -f $@ $(NROFF) -man $< >$@ .man.z: echo Formatting $<... - $(RM) $@ t.z + rm -f $@ t.z $(NROFF) -man $< >t pack -f t - $(MV) t.z $@ + mv t.z $@ # -# End of "$Id: makeinclude.in,v 1.7.2.9 2001/02/12 15:12:14 easysw Exp $". +# End of "$Id: makeinclude.in,v 1.7.2.10 2001/02/12 15:34:37 easysw Exp $". # |
