AC_CHECK_HEADER(FlexLexer.h, true,
AC_MSG_WARN(can't find flex header. Please install Flex headers correctly))
AC_CONFIG_SUBDIRS(flower)
-AC_OUTPUT(make/out/Configure_variables.make:make/Configure_variables.make.in
- Makefile:make/Toplevel.make.in
- )
+AC_OUTPUT(make/out/Configure_variables.make:make/Configure_variables.make.in)
# -*-Makefile-*-
########################################################
-#
-# WARNING!WARNING!WARNING!WARNING!WARNING!WARNING!
-#
-# DO NOT EDIT!
-#
-#
-# @configure_input@
-########################################################
# project LilyPond -- the musical typesetter
# title top level makefile for LilyPond
# file Makefile
localclean:
- rm -f $(allexe) core config.cache config.log config.status
+ rm -f core config.cache config.log config.status
rm -f $(outdir)/*.{class,html,gif}
-localinstall: all
- $(INSTALL) -d $(bindir)
- $(INSTALL) -m 755 $(allexe) $(bindir)
+Makefile: make/Toplevel.make.in
+ echo '# WARNING WARNING WARNING WARNING' > $@
+ echo '# do not edit! this is generated from make/Toplevel.make.in' >> $@
+ cat $< >> $@
-localuninstall:
- for i in $(allexe); do rm -f $(bindir)/`basename $$i`; done