Major overhaul of the portability stuff; port to autoconf 2.52

This commit is contained in:
hpa 2001-11-12 10:03:04 +00:00
parent 4c0a635276
commit 2c31169f57
16 changed files with 236 additions and 176 deletions

View file

@ -1,3 +1,20 @@
## -*- makefile -*- ------------------------------------------------------
##
## Copyright 2001 H. Peter Anvin - All Rights Reserved
##
## This program is free software available under the same license
## as the "OpenBSD" operating system, distributed at
## http://www.openbsd.org/.
##
## -----------------------------------------------------------------------
## $Id$
##
## MCONFIG.in
##
## Basic Makefile definitions
##
# Prefixes
prefix = @prefix@
exec_prefix = @exec_prefix@
@ -11,7 +28,7 @@ MANDIR = @mandir@
# System binaries
SBINDIR = @sbindir@
# Install into chroot area
# Install into alternate root area, e.g. for package generation
INSTALLROOT =
# Install program
@ -21,7 +38,7 @@ INSTALL_DATA = @INSTALL_DATA@
# Compiler and compiler flags
CC = @CC@
CFLAGS = @CFLAGS@
CFLAGS = @CFLAGS@ -I$(SRCROOT)
# Link flags
LDFLAGS = @LDFLAGS@