n2n/scripts/hack_fakeautoconf.sh
2023-05-06 08:48:04 +08:00

22 lines
374 B
Bash
Executable File

#!/bin/sh
#
# Specifically for windows, where installing autoconf looks suspiciously
# like boiling the ocean.
cat >config.mak <<EOF
CC=gcc
AR=ar
CFLAGS=$CFLAGS -g -O2 -I./include
LDFLAGS=$LDFLAGS -L.
LDLIBS_EXTRA=$LDLIBS
EOF
cat >tools/config.mak <<EOF
TOOLS_ADDITIONAL=
EOF
cat <<EOF >include/config.h
#define PACKAGE_VERSION "FIXME"
#define PACKAGE_OSNAME "FIXME"
EOF