removed parser.l from build process, also removed flex dependency from configure
[xboard.git] / Makefile.am
index 8901a08..aa2cadb 100644 (file)
@@ -1,3 +1,4 @@
+### if we are compiling with ZIPPY we need some extra source files
 
 if ZIPPY
   ZPY = zippy.c zippy.h
@@ -15,7 +16,7 @@ xboard_SOURCES = backend.c backend.h backendz.h \
                 gettext.h  \
                 lists.c lists.h \
                 moves.c moves.h \
-                parser.l parser.h \
+                parser.c parser.h \
                 pgntags.c \
                 uci.c \
                 xboard.c xboard.h args.h \
@@ -34,26 +35,57 @@ xboard_LDADD = -lm @XAW_LIBS@ @X_LIBS@
 
 EXTRA_DIST = pixmaps bitmaps winboard sounds filebrowser/README \
        xboard.texi gpl.texinfo texi2man texinfo.tex xboard.man xboard.desktop \
-       COPYRIGHT FAQ.html engine-intf.html ics-parsing.txt readme.htm zippy.README
+       COPYRIGHT FAQ.html engine-intf.html ics-parsing.txt readme.htm zippy.README \
+       xboard.conf.in SHORTLOG DIFFSTAT history.c
 
 DISTCLEANFILES = stamp-h
 
-AM_CPPFLAGS=-DINFODIR='"$(infodir)"' @X_CFLAGS@  -DSYSCONFDIR='"$(sysconfdir)"'
+AM_CPPFLAGS=-DINFODIR='"$(infodir)"' @X_CFLAGS@  -DSYSCONFDIR='"$(sysconfdir)"' -DBITMAPDIR='"$(datadir)/games/xboard/bitmaps/"'
 
 info_TEXINFOS =  xboard.texi
 xboard_TEXINFOS =  copyright.texi 
 man6_MANS = xboard.man
 
-dist_sysconf_DATA = xboard.conf
+
+### config file
+
+sysconf_DATA = xboard.conf
+
+
+### icon files
 
 icondir = $(datadir)/icons/hicolor/48x48/apps
 dist_icon_DATA = xboard.png
 svgicondir = $(datadir)/icons/hicolor/scalable/apps
 dist_svgicon_DATA = xboard.svg
 
+
+### desktop files for KDE and gnome
+
 Applicationsdir = $(datadir)/applications
 Applications_DATA = xboard.desktop
 
 
+### directory and files to be used as bitmaps
+
+bitmapdir = $(datadir)/games/xboard/
+dist_bitmap_DATA = pixmaps/wood_d.xpm pixmaps/wood_l.xpm
+
+
+### set correct dir in xboard.conf
+
+edit = sed -e 's|@bitmapdir[@]|$(bitmapdir)|g'
+
+xboard.conf: Makefile $(srcdir)/xboard.conf.in
+       @echo '  'GEN '  ' $@;
+       @rm -f $@ $@.tmp
+       @$(edit) $(srcdir)/$@.in >$@.tmp
+       @mv $@.tmp $@
+
+distclean-local:
+       -rm -f xboard.conf
+
+### the man page depends on several files, so we add a special rule
+
 xboard.man: xboard.texi copyright.texi gpl.texinfo version.texi
        $(srcdir)/texi2man $(srcdir)/xboard.texi > xboard.man || (rm -f xboard.man ; false)