diff options
author | Kevin E Martin <kem@kem.org> | 2005-10-06 02:35:22 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-10-06 02:35:22 +0000 |
commit | 30c1369bf5816ffd7bd52d9a9dbcb72500684e2f (patch) | |
tree | 48da91015d125c2d40e6d8dfce8a715669df77fa /hw/dmx/config/Makefile.am | |
parent | 1f9b6dc1ccd999c90ba825cf5fbdfa29770224a6 (diff) |
Add support for building DMX config and examples programs Add missing files
to EXTRA_DIST Install Xdmx man page
Diffstat (limited to 'hw/dmx/config/Makefile.am')
-rw-r--r-- | hw/dmx/config/Makefile.am | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/hw/dmx/config/Makefile.am b/hw/dmx/config/Makefile.am index a4dbbe4ae..7b3b0eebc 100644 --- a/hw/dmx/config/Makefile.am +++ b/hw/dmx/config/Makefile.am @@ -20,5 +20,41 @@ CLEANFILES = $(BUILT_SOURCES) libdmxconfig_a_SOURCES = $(LIBSRCS) -AM_CFLAGS = -I$(top_srcdir)/hw/dmx -DHAVE_DMX_CONFIG_H @DMXMODULES_CFLAGS@ AM_YFLAGS = -d +AM_CFLAGS = \ + -I$(top_srcdir)/hw/dmx \ + -DHAVE_DMX_CONFIG_H \ + -DDMX_LOG_STANDALONE \ + @DMXMODULES_CFLAGS@ + +bin_PROGRAMS = xdmxconfig vdltodmx dmxtodmx + +xdmxconfig_SOURCES = \ + xdmxconfig.c \ + $(top_srcdir)/hw/dmx/dmxlog.c \ + Canvas.c \ + Canvas.h \ + CanvasP.h +xdmxconfig_LDADD = -L. -ldmxconfig @XDMXCONFIG_DEP_LIBS@ + +vdltodmx_SOURCES = vdltodmx.c +vdltodmx_LDADD = -L. -ldmxconfig + +dmxtodmx_SOURCES = dmxtodmx.c +dmxtodmx_LDADD = -L. -ldmxconfig + +dist_man1_MANS = xdmxconfig.man vdltodmx.man dmxtodmx.man + +EXTRA_DIST = \ + test-a.in test-a.out \ + test-b.in test-b.out \ + test-c.in test-c.out \ + test-d.in test-d.out \ + test-e.in test-e.out \ + test-f.in test-f.out \ + test-g.in test-g.out \ + test-h.in test-h.out \ + test-i.in test-i.out \ + test-j.in test-j.out \ + test-k.in test-k.out \ + test-l.in test-l.out |