mirror of
https://github.com/clearlinux/psstop.git
synced 2026-08-18 21:36:01 +00:00
f2e96c9511
This uses `ronn` to create a developer-maintained manual page. The output is pushed into git, such that a normal distribution compilation does not need to have `ronn` installed to do a full install. Developers will need to check in the psstop.1 file after modifying the psstop.1.md file
16 lines
427 B
Plaintext
16 lines
427 B
Plaintext
# -*- Autoconf -*-
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.66])
|
|
AC_INIT(psstop, 1.2, dev@lists.clearlinux.org)
|
|
AM_INIT_AUTOMAKE([foreign -Wall -W subdir-objects])
|
|
AM_SILENT_RULES([yes])
|
|
AC_PROG_CC
|
|
AC_LANG(C)
|
|
AC_CONFIG_HEADERS([config.h])
|
|
PKG_CHECK_MODULES([glib], [glib-2.0 gthread-2.0])
|
|
AM_PROG_CC_C_O
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|