123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #
- # /*
- # * 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/>.
- # *
- # * SPDX-License-Identifier: GPL-3.0+
- # * License-Filename: LICENSE
- # *
- # */
- #
- #
- ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
- #
- AM_MAKEFLAGS = --no-print-directory
- #
- AUTOMAKE_OPTIONS = foreign subdir-objects
- # dirs with makefile.am
- SUBDIRS = . src
- #
- NULL =
- #
- EXTRA_DIST = \
- $(NULL)
- #
- MAINTAINERCLEANFILES = \
- Makefile \
- Makefile.in \
- aclocal.m4 \
- configure \
- config.sub \
- config.guess \
- config.status \
- compile \
- depcomp \
- install-sh \
- ltmain.sh \
- missing \
- config.h.in \
- dmake.output \
- dsmake.output \
- dsmake.errors \
- dsmake.warnings \
- autoscan.log \
- configure.scan \
- config.h.in~ \
- config.log \
- stamp-h1 \
- config.h \
- src/Makefile.in \
- src/Makefile \
- src/*.i \
- src/*.s \
- autom4te.cache/* \
- m4/*.m4 \
- ylwrap \
- $(NULL)
- #
- cleaner:
- make clean
- make maintainer-clean-generic
- rm -vfr autom4te.cache
- rm -vfr src/.deps
- rm -vfr src/.libs
- rm -vf ./libtool
- rm -vfr ./m4
- rm -vf ./*~
- rm -vf ./O1
- rm -vf ./O2
- touch *
- # end
|