forked from plptools/plptools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
49 lines (42 loc) · 1.66 KB
/
Makefile.am
File metadata and controls
49 lines (42 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Top level Makefile.am.
#
# This file is part of plptools.
#
# Copyright (C) 1999-2002 Fritz Elfert <felfert@to.com>
# Copyright (C) 2007-2025 Reuben Thomas <rrt@sc3d.org>
#
# 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 2 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
# along with this program; if not, see <https://www.gnu.org/licenses/>.
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = po libgnu lib ncpd plpftp plpprint sisinstall tests doc
if BUILD_PLPFUSE
SUBDIRS += plpfuse
endif
EXTRA_DIST = AUTHORS COPYING INSTALL NEWS README HISTORY ABOUT-NLS \
etc/plptools.in \
etc/ttytap.c etc/psidump etc/psidump.1 \
etc/udev-usbserial-plptools.rules \
m4/gnulib-cache.m4
DISTCLEANFILES = etc/plptools
uninstall-local:
rm -f $(DESTDIR)$(initdir)/plptools
install-exec-local:
$(INSTALL) -d $(DESTDIR)$(initdir)
$(INSTALL) $(top_builddir)/etc/plptools $(DESTDIR)$(initdir)/plptools
# FIXME: Automatically revert .po files if they're actually clean
# Currently, rather than run `git diff --exit-code', we simply show the
# diff, and eyeball it to check there's nothing other than the datestamps on
# the .po files.
release: distcheck
git diff && \
gh release create v$(VERSION) --title "Release v$(VERSION)" $(DIST_ARCHIVES)