mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-05 15:30:02 +01:00
13 lines
220 B
Bash
Executable File
13 lines
220 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
# if you use autoconf 2.64 or earlier,
|
|
# you may have to create the m4 directory yourself
|
|
#
|
|
|
|
if [ ! -d m4 ]; then
|
|
mkdir m4
|
|
fi
|
|
|
|
autoreconf -v -fi -I m4
|