5004f20609
[INTERPRETER] * NEW: Remove the now useless testing specific code. * NEW: 'gbx3 -T' now just loads the 'gb.test' component and calls Test.Main() passing it the '-T' option argument. [GB.TEST] * NEW: Move 'gb.test' sources in '/main/lib'. * NEW: 'gb.test' has now a part written in C that allows him to load project classes on demand.
14 lines
274 B
Makefile
14 lines
274 B
Makefile
COMPONENT = gb.test
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.test.la
|
|
|
|
gb_test_la_LIBADD = @C_LIB@
|
|
gb_test_la_LDFLAGS = -module @LD_FLAGS@
|
|
gb_test_la_CFLAGS = -I$(top_srcdir)/share -I$(top_srcdir)/gbx $(AM_CFLAGS)
|
|
|
|
gb_test_la_SOURCES = \
|
|
main.h main.c
|
|
|
|
|
|
|