mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
a1e3b60d2d
svn:r10742
8 lines
196 B
Bash
Executable File
8 lines
196 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
aclocal && \
|
|
autoheader && \
|
|
autoconf && \
|
|
automake --add-missing --copy && \
|
|
if test x$NOCONF = x ; then ./configure "$@"; fi
|