mirror of
https://github.com/octoleo/lsyncd.git
synced 2024-11-11 07:40:55 +00:00
12 lines
317 B
Bash
Executable File
12 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
# simplistic script to run after checkout
|
|
|
|
# In case of explicit having a 1.7 version use that (for systems having multiple automake versions installed)
|
|
ACLOCAL=`which aclocal-1.7 || echo aclocal`
|
|
AUTOMAKE=`which automake-1.7 || echo automake`
|
|
|
|
$ACLOCAL && \
|
|
autoheader && \
|
|
autoconf && \
|
|
$AUTOMAKE -a -c
|