summaryrefslogtreecommitdiff
path: root/Build/source/texk/musixflx
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2009-03-20 10:15:32 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2009-03-20 10:15:32 +0000
commitd7f8ab6ea1a683492b985013a541ab11e33b9f73 (patch)
treea8b719cba4c45e2e308b53ebbd0ebb313a7cbf36 /Build/source/texk/musixflx
parent9d502c516fe61658f540e6b98621632b91deb53c (diff)
new build system
git-svn-id: svn://tug.org/texlive/trunk@12458 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/musixflx')
-rw-r--r--Build/source/texk/musixflx/Makefile.am9
-rw-r--r--Build/source/texk/musixflx/config.h.in22
-rw-r--r--Build/source/texk/musixflx/configure.ac25
3 files changed, 56 insertions, 0 deletions
diff --git a/Build/source/texk/musixflx/Makefile.am b/Build/source/texk/musixflx/Makefile.am
new file mode 100644
index 00000000000..38b41323824
--- /dev/null
+++ b/Build/source/texk/musixflx/Makefile.am
@@ -0,0 +1,9 @@
+##
+ACLOCAL_AMFLAGS = -I ../../m4
+
+bin_PROGRAMS = musixflx
+
+## Eventually delete these files
+##
+EXTRA_DIST = Makefile.in.orig configure.in.orig
+
diff --git a/Build/source/texk/musixflx/config.h.in b/Build/source/texk/musixflx/config.h.in
new file mode 100644
index 00000000000..c364eda4520
--- /dev/null
+++ b/Build/source/texk/musixflx/config.h.in
@@ -0,0 +1,22 @@
+/* config.h.in. Generated from configure.ac by autoheader. */
+
+/* Name of package */
+#undef PACKAGE
+
+/* Define to the address where bug reports for this package should be sent. */
+#undef PACKAGE_BUGREPORT
+
+/* Define to the full name of this package. */
+#undef PACKAGE_NAME
+
+/* Define to the full name and version of this package. */
+#undef PACKAGE_STRING
+
+/* Define to the one symbol short name of this package. */
+#undef PACKAGE_TARNAME
+
+/* Define to the version of this package. */
+#undef PACKAGE_VERSION
+
+/* Version number of package */
+#undef VERSION
diff --git a/Build/source/texk/musixflx/configure.ac b/Build/source/texk/musixflx/configure.ac
new file mode 100644
index 00000000000..911444a8c17
--- /dev/null
+++ b/Build/source/texk/musixflx/configure.ac
@@ -0,0 +1,25 @@
+dnl Process this file with autoconf to produce a configure script.
+dnl
+dnl Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org>
+dnl
+dnl This file is free software; the copyright holder
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+dnl
+AC_INIT([musixflx for TeX Live], [0.83], [tex-k@tug.org])
+AC_PREREQ([2.63])
+AC_CONFIG_SRCDIR([musixflx.c])
+AC_CONFIG_AUX_DIR([../../build-aux])
+AC_CONFIG_MACRO_DIR([../../m4])
+
+AM_INIT_AUTOMAKE([foreign dist-bzip2])
+AM_MAINTAINER_MODE
+
+AC_PROG_CC
+
+dnl Not used, but avoids zillions of defines on commandline
+AC_CONFIG_HEADERS([config.h])
+
+AC_CONFIG_FILES([Makefile])
+
+AC_OUTPUT