diff options
author | Mike Gerwitz <mikegerwitz@gnu.org> | 2014-01-16 23:07:42 -0500 |
---|---|---|
committer | Mike Gerwitz <mikegerwitz@gnu.org> | 2014-01-16 23:07:42 -0500 |
commit | 3a93fbb25c877485c5a43fd52530eaa93707dfa5 (patch) | |
tree | 8222008ccf822a47e4161763ff801540e7020bed /Makefile.am | |
parent | 1d048cc99791b8b635450b3fc6a7943ffa9e6c70 (diff) | |
download | liza-3a93fbb25c877485c5a43fd52530eaa93707dfa5.tar.gz liza-3a93fbb25c877485c5a43fd52530eaa93707dfa5.tar.bz2 liza-3a93fbb25c877485c5a43fd52530eaa93707dfa5.zip |
Added placeholder files for autotools
``Building'' Liza will not be required to use it; see ease.js for the style
of building that will be used here. In particular: the build process will be
used for minification and the creation of distribution archives, but one can
simply include the source files (using, say, node.js) to use it without
building.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..8efcf15 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,24 @@ +## liza Makefile.am for automake +# +# Copyright (C) 2014 LoVullo Associates, Inc. +# +# This file is part of liza. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +## + +# placeholder +all: + @echo "You are too early! Liza is not ready; check back later." + @exit 1 |