blob: 9dea1cd2e7ac17308014303025ba8f1eccf0c7e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
libexec_PROGRAMS = gnome-pty-helper
AM_CFLAGS = $(GLIB_CFLAGS)
AM_LDFLAGS = $(LDFLAGS) $(GLIB_LIBS)
gnome_pty_helper_SOURCES = \
gnome-pty.h \
gnome-login-support.c \
gnome-login-support.h \
gnome-pty-helper.c \
gnome-utmp.c
install-exec-hook:
chown root.utmp $(DESTDIR)$(libexecdir)/gnome-pty-helper || true
chmod g+s $(DESTDIR)$(libexecdir)/gnome-pty-helper || true
MAINTAINERCLEANFILES = \
$(srcdir)/INSTALL \
$(srcdir)/aclocal.m4 \
$(srcdir)/config.h.in \
$(srcdir)/configure \
$(srcdir)/omf.make \
$(srcdir)/xmldocs.make \
`find "$(srcdir)" -type f -name Makefile.in -print`
|