Here's a few changes I made to fg-0.58 this weekend. Included are the following features: - Sun and moon have a halo - The moon has a light vector, moon_angle, etc. etc. so that we can have some moonlight during the night. - Lot's of small changes tweakes, including some stuff Norman Vine sent me earlier.
20 lines
398 B
Makefile
20 lines
398 B
Makefile
if HAVE_DAYLIGHT
|
|
DEFS += -DHAVE_DAYLIGHT
|
|
endif
|
|
|
|
if HAVE_TIMEZONE
|
|
DEFS += -DHAVE_TIMEZONE
|
|
endif
|
|
|
|
noinst_LIBRARIES = libTime.a
|
|
|
|
libTime_a_SOURCES = \
|
|
event.cxx event.hxx \
|
|
fg_time.cxx fg_time.hxx \
|
|
fg_timer.cxx fg_timer.hxx \
|
|
light.cxx light.hxx \
|
|
moonpos.cxx moonpos.hxx \
|
|
sunpos.cxx sunpos.hxx \
|
|
timestamp.hxx
|
|
|
|
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator
|