mirror of https://github.com/ntop/n2n.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
473 B
22 lines
473 B
3 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Specifically for windows, where installing autoconf looks suspiciously
|
||
|
# like boiling the ocean.
|
||
|
|
||
3 years ago
|
sed \
|
||
3 years ago
|
-e "s%@CC@%gcc%g" \
|
||
|
-e "s%@AR@%ar%g" \
|
||
|
-e "s%@CFLAGS@%$CFLAGS%g" \
|
||
|
-e "s%@LDFLAGS@%$LDFLAGS%g" \
|
||
|
-e "s%@N2N_LIBS@%$LDLIBS%g" \
|
||
3 years ago
|
< Makefile.in > Makefile
|
||
3 years ago
|
|
||
3 years ago
|
sed \
|
||
3 years ago
|
-e "s%@ADDITIONAL_TOOLS@%%g" \
|
||
3 years ago
|
< tools/Makefile.in > tools/Makefile
|
||
3 years ago
|
|
||
|
cat <<EOF >include/config.h
|
||
|
#define PACKAGE_VERSION "FIXME"
|
||
|
#define PACKAGE_OSNAME "FIXME"
|
||
|
EOF
|