mirror of
https://github.com/HEYAHONG/emu8051.git
synced 2025-05-08 22:09:27 +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
|