mirror of
https://github.com/unittest-cpp/unittest-cpp
synced 2026-09-26 16:19:30 +03:00
9 lines
322 B
Bash
Executable file
9 lines
322 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test -e ./.autotools_aux || mkdir .autotools_aux
|
|
|
|
libtoolize -cq
|
|
aclocal -I m4 --install # Generate aclocal
|
|
autoconf # Generate configure script
|
|
autoheader # Generate config.h
|
|
automake --add-missing --copy # Generate Makefile.in and other scripts
|