mirror of
http://git.hugovil.com/git/emu8051.git
synced 2025-05-09 00:51:03 +08:00
10 lines
224 B
Bash
Executable File
10 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
# autogen.sh -- Use this script to create generated files from the git distribution
|
|
|
|
# ChangeLog is generated from git log output using "make changelog"
|
|
touch ChangeLog
|
|
|
|
set -e
|
|
autoreconf -vi
|
|
rm -rf autom4te.cache
|