/usr/share/doc/mgetty/frontends/Makefile is in mgetty-docs 1.1.36-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #
# Actually, this makefile doesn't do anything except calling others...
#
SUBDIRS=dialog tkperl
all:
for i in $(SUBDIRS) ; do \
( cd $$i ; $(MAKE) all ); \
done
install:
for i in $(SUBDIRS) ; do \
( cd $$i ; $(MAKE) BINDIR=\"$(BINDIR)\" SBINDIR=\"$(SBINDIR)\" \
LIBDIR=\"$(LIBDIR)\" install ); \
done
clean:
for i in $(SUBDIRS) ; do \
( cd $$i ; $(MAKE) clean ); \
done
|