1 ## Process this file with automake to generate Makefile.in 2 # 3 # Copyright (C) 2021-2026 Free Software Foundation, Inc. 4 # 5 # This file is free software; you can redistribute it and/or modify 6 # it under the terms of the GNU General Public License as published by 7 # the Free Software Foundation; either version 3 of the License, or 8 # (at your option) any later version. 9 # 10 # This program is distributed in the hope that it will be useful, 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 # GNU General Public License for more details. 14 # 15 # You should have received a copy of the GNU General Public License 16 # along with this program; see the file COPYING3. If not see 17 # <http://www.gnu.org/licenses/>. 18 19 AUTOMAKE_OPTIONS = foreign 20 ACLOCAL_AMFLAGS = -I . -I .. -I ../.. 21 22 bin_SCRIPTS = gprofng-display-html 23 CLEANFILES = $(bin_SCRIPTS) 24 25 do_subst = sed -e 's/BINUTILS_VERSION/$(VERSION)/' 26 27 gprofng-display-html: $(srcdir)/gp-display-html.in 28 $(do_subst) < $(srcdir)/gp-display-html.in > $@ 29 chmod +x $@ 30