12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- ####
- #### Copyright (C) 2015
- #### David Pirotte <david at altosw dot be>
- #### This file is part of Guile-Squee.
- #### Guile-Squee is free software: you can redistribute it and/or
- #### modify it under the terms of the GNU Lesser General Public
- #### License as published by the Free Software Foundation, either
- #### version 3 of the License, or (at your option) any later version.
- #### Guile-Squee 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
- #### Lesser General Public License for more details.
- #### You should have received a copy of the GNU Lesser General Public
- #### License along with Guile-Squee. If not, see
- #### <http://www.gnu.org/licenses/>.
- ####
- include $(top_srcdir)/am/guile.mk
- moddir=$(ggsdir)
- godir=$(gscdir)
- pkgconfigdir=$(libdir)/pkgconfig
- pkgconfig_DATA=meta/guile-squee-1.0.pc
- SOURCES = \
- squee/reexport.scm \
- squee/enum.scm \
- squee/squee.scm \
- squee.scm
- # NOCOMP_SOURCES = \
- # squee/...
- EXTRA_DIST = \
- AUTHORS \
- ChangeLog \
- COPYING \
- INSTALL \
- LICENSE \
- NEWS \
- README \
- env.in \
- meta/guile-squee-1.0.pc.in \
- $(wildcard am/*) \
- $(wildcard m4/*) \
- $(SOURCES)
- # $(NOCOMP_SOURCES)
- # bin_SCRIPTS = \
- # squee/...
- CLEANFILES = \
- meta/guile-squee-1.0.pc \
- $(GOBJECTS)
- # $(bin_SCRIPTS)
- # ETAGS_ARGS = \
- # $(SOURCES)
- SUBDIRS = \
- doc
- distclean-local:
- rm -f Makefile.in
- rm -f aclocal.m4
- rm -rf autom4te.cache
- rm -rf build-aux
- rm -f configure
- rm -f *~
- rm -f guile-squee-*.tar.gz
- rm -rf doc/squee
- rm -f doc/*.info
- rm -f doc/*.pdf
- rm -f doc/*~
- rm -f doc/*.aux doc/*.cp doc/*.cps doc/*.fn doc/*.ky
- rm -f doc/*.log doc/*.pg doc/*.toc doc/*.tp doc/*.vr
- rm -f doc/Makefile.in
- rm -f doc/stamp-vti
- rm -f squee/*~
- rm -f squee/TAGS
- # Makefile.am ends here
|