Blame Makefile.am

Packit f00812
# This file is part of flex.
Packit f00812
Packit f00812
# Redistribution and use in source and binary forms, with or without
Packit f00812
# modification, are permitted provided that the following conditions
Packit f00812
# are met:
Packit f00812
Packit f00812
# 1. Redistributions of source code must retain the above copyright
Packit f00812
#    notice, this list of conditions and the following disclaimer.
Packit f00812
# 2. Redistributions in binary form must reproduce the above copyright
Packit f00812
#    notice, this list of conditions and the following disclaimer in the
Packit f00812
#    documentation and/or other materials provided with the distribution.
Packit f00812
Packit f00812
# Neither the name of the University nor the names of its contributors
Packit f00812
# may be used to endorse or promote products derived from this software
Packit f00812
# without specific prior written permission.
Packit f00812
Packit f00812
# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
Packit f00812
# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
Packit f00812
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
Packit f00812
# PURPOSE.
Packit f00812
Packit f00812
# Notes on building:
Packit f00812
Packit f00812
# Possible values for DEFS:
Packit f00812
#
Packit f00812
# By default, flex generates 8-bit scanners when using table compression,
Packit f00812
# and 7-bit scanners when using uncompressed tables (-f or -F options).
Packit f00812
# For flex to always generate 8-bit scanners, add "-DDEFAULT_CSIZE=256"
Packit f00812
# to DEFS.
Packit f00812
Packit f00812
ACLOCAL_AMFLAGS = -I m4
Packit f00812
indent = @INDENT@
Packit f00812
Packit f00812
dist_doc_DATA = \
Packit f00812
	AUTHORS \
Packit f00812
	COPYING \
Packit f00812
	NEWS \
Packit f00812
	ONEWS \
Packit f00812
	README
Packit f00812
Packit f00812
EXTRA_DIST = \
Packit f00812
	.indent.pro \
Packit f00812
	autogen.sh
Packit f00812
Packit f00812
SUBDIRS = \
Packit f00812
	lib \
Packit f00812
	src \
Packit f00812
	doc \
Packit f00812
	examples \
Packit f00812
	po \
Packit f00812
	tests \
Packit f00812
	tools
Packit f00812
Packit f00812
# Create the ChangeLog, but only if we're inside a git working directory
Packit f00812
Packit f00812
ChangeLog: $(srcdir)/tools/git2cl
Packit f00812
	if [ -d $(srcdir)/.git ] ; then \
Packit f00812
		$(srcdir)/tools/git2cl > $@ \
Packit f00812
	; fi
Packit f00812
Packit f00812
install-exec-hook:
Packit f00812
	cd $(DESTDIR)$(bindir) && \
Packit f00812
		$(LN_S) -f flex$(EXEEXT) flex++$(EXEEXT)
Packit f00812
Packit f00812
.PHONY: ChangeLog tags indent