Miscellaneous Tweaks.
This commit is contained in:
parent
28a6ec8065
commit
e96e09d112
@ -12,4 +12,4 @@ libMath_la_SOURCES = \
|
|||||||
polar.c polar.h \
|
polar.c polar.h \
|
||||||
vector.c vector.h
|
vector.c vector.h
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Simulator
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator
|
||||||
|
@ -123,7 +123,7 @@ all: Makefile $(LTLIBRARIES)
|
|||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .S .c .lo .o .s
|
.SUFFIXES: .S .c .lo .o .s
|
||||||
$(srcdir)/Makefile.in: @MAINT@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
$(srcdir)/Makefile.in: @MAINT@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||||
cd $(top_srcdir) && $(AUTOMAKE) --gnu Simulator/Math/Makefile
|
cd $(top_srcdir) && $(AUTOMAKE) --gnu Lib/Math/Makefile
|
||||||
|
|
||||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
|
||||||
cd $(top_builddir) \
|
cd $(top_builddir) \
|
||||||
@ -217,14 +217,14 @@ maintainer-clean-tags:
|
|||||||
|
|
||||||
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
|
||||||
|
|
||||||
subdir = Simulator/Math
|
subdir = Lib/Math
|
||||||
|
|
||||||
distdir: $(DISTFILES)
|
distdir: $(DISTFILES)
|
||||||
here=`cd $(top_builddir) && pwd`; \
|
here=`cd $(top_builddir) && pwd`; \
|
||||||
top_distdir=`cd $(top_distdir) && pwd`; \
|
top_distdir=`cd $(top_distdir) && pwd`; \
|
||||||
distdir=`cd $(distdir) && pwd`; \
|
distdir=`cd $(distdir) && pwd`; \
|
||||||
cd $(top_srcdir) \
|
cd $(top_srcdir) \
|
||||||
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Simulator/Math/Makefile
|
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu Lib/Math/Makefile
|
||||||
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
||||||
d=$(srcdir); \
|
d=$(srcdir); \
|
||||||
test -f $(distdir)/$$file \
|
test -f $(distdir)/$$file \
|
||||||
@ -323,7 +323,7 @@ installdirs mostlyclean-generic distclean-generic clean-generic \
|
|||||||
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
|
maintainer-clean-generic clean mostlyclean distclean maintainer-clean
|
||||||
|
|
||||||
|
|
||||||
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Simulator
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator
|
||||||
|
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
|
@ -29,7 +29,8 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h> /* for random(), srandom() */
|
#include <stdlib.h> /* for random(), srandom() */
|
||||||
#include <time.h> /* for time() to seed srandom() */
|
#include <time.h> /* for time() to seed srandom() */
|
||||||
#include <Main/fg_debug.h>
|
|
||||||
|
#include <Debug/fg_debug.h>
|
||||||
|
|
||||||
#include "fg_random.h"
|
#include "fg_random.h"
|
||||||
|
|
||||||
@ -72,9 +73,12 @@ double fg_random(void) {
|
|||||||
|
|
||||||
|
|
||||||
/* $Log$
|
/* $Log$
|
||||||
/* Revision 1.5 1998/04/03 22:10:29 curt
|
/* Revision 1.6 1998/04/18 03:53:42 curt
|
||||||
/* Converting to Gnu autoconf system.
|
/* Miscellaneous Tweaks.
|
||||||
/*
|
/*
|
||||||
|
* Revision 1.5 1998/04/03 22:10:29 curt
|
||||||
|
* Converting to Gnu autoconf system.
|
||||||
|
*
|
||||||
* Revision 1.4 1998/02/03 23:20:28 curt
|
* Revision 1.4 1998/02/03 23:20:28 curt
|
||||||
* Lots of little tweaks to fix various consistency problems discovered by
|
* Lots of little tweaks to fix various consistency problems discovered by
|
||||||
* Solaris' CC. Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
|
* Solaris' CC. Fixed a bug in fg_debug.c with how the fgPrintf() wrapper
|
||||||
|
Loading…
Reference in New Issue
Block a user