1
0
Fork 0
flightgear/Time/Makefile.am
curt 274ba49906 Incorporated some automake conditionals to try to support mktime() correctly
on a wider variety of platforms.
Added the declaration of memmove needed by the stl which apparently
solaris only defines for cc compilations and not for c++ (__STDC__)
1998-06-05 18:18:12 +00:00

20 lines
384 B
Makefile

if HAVE_DAYLIGHT
DEFS += -DHAVE_DAYLIGHT
endif
if HAVE_TIMEZONE
DEFS += -DHAVE_TIMEZONE
endif
libdir = ${exec_prefix}/lib
lib_LTLIBRARIES = libTime.la
libTime_la_SOURCES = \
event.cxx event.hxx \
fg_time.cxx fg_time.hxx \
fg_timer.cxx fg_timer.hxx \
light.cxx light.hxx \
sunpos.cxx sunpos.hxx
INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator