1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
## Process this file with automake to generate a Makefile.in
actor_plugin_LTLIBRARIES = actor_JESS.la
AM_CFLAGS = $(LIBVISUAL_CFLAGS)
AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)
actor_JESS_la_LDFLAGS = -module -avoid-version
actor_JESS_la_LIBADD = $(LIBVISUAL_LIBS)
actor_JESS_la_SOURCES = analyser.c analyser.h analyser_struct.h\
distorsion.c distorsion.h\
draw.c draw.h\
draw_low_level.c draw_low_level.h\
jess.c jess.h\
pal.c pal.h\
projection.c projection.h\
renderer.c renderer.h\
def.h struct.h
|