gambas-source-code/main/lib/complex/Makefile.am
Benoît Minisini fa552f69c1 [DEVELOPMENT ENVIRONMENT]
* NEW: New gb.complex component

[INTERPRETER]
* BUG: Automatic array conversion now works with not yet loaded array 
  classes.

[GB.COMPLEX]
* NEW: New component that implements a rudimentary management of complex 
  numbers. This component is automatically loaded if a complex number
  constant is encountered and no loaded component can already handle 
  complex numbers.


git-svn-id: svn://localhost/gambas/trunk@4924 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2012-07-09 15:37:42 +00:00

14 lines
298 B
Makefile

COMPONENT = gb.complex
include $(top_srcdir)/component.am
gblib_LTLIBRARIES = gb.complex.la
gb_complex_la_LIBADD = @MATH_LIB@
gb_complex_la_LDFLAGS = -module @LD_FLAGS@
gb_complex_la_CFLAGS = -I$(top_srcdir)/share $(AM_CFLAGS)
gb_complex_la_SOURCES = \
ccomplex.h ccomplex.c \
main.h main.c