blob: f496b5b260e5b246783b2ec4a90c07b98ea6226f (
plain)
1
2
3
4
5
6
7
8
9
10
|
# We don't want to use debugging information on DOS. Unfortunately,
# this requires that we set CFLAGS.
CFLAGS=-O2 -fno-omit-frame-pointer
# We set MAKEINFOFLAGS to not split .info files, because the resulting
# file names don't work on DOS.
MAKEINFOFLAGS=--no-split
# This does some sort of DOS specific installation, I guess.
INSTALL_DOSREL=install-dosrel
|