Do the expert programmers at /prog/ use the GNU Autotools?
Also, are the Autotools really the de facto tools to create software packages?
Name:
Anonymous2008-12-18 8:47
#!/bin/sh
if [ -z $CC ]; CC=c99; fi
if [ -z $CFLAGS ]; CFLAGS="-O2 -D _XOPEN_SOURCE=600 -D _POSIX_C_SOURCE=200112L"; fi
if [ -z $LD ]; LD=ld; fi
if [ -z $LDFLAGS ]; LDFLAGS="-O2 -s"; fi
LIBS="..."