14 lines
231 B
Makefile
14 lines
231 B
Makefile
SHELL=/bin/sh
|
|
|
|
conf: configure.sh config.h.in
|
|
.PHONY: conf
|
|
|
|
aclocal.m4: m4/*.m4
|
|
aclocal -I m4
|
|
|
|
configure.sh: configure.ac aclocal.m4
|
|
autoconf -o configure.sh
|
|
|
|
config.h.in: configure.ac aclocal.m4
|
|
autoheader && touch config.h.in
|