d738405e7f
Add scripts for syncing with libffi upstream: 1. Clone libffi repo. 2. Checkout the specific commit. 3. Remove the unused files. 4. Add new files and remove old files if needed. * HOWTO_MERGE: New file. * autogen.sh: Likewise. * merge.sh: Likewise.
12 lines
278 B
Bash
Executable File
12 lines
278 B
Bash
Executable File
#!/bin/sh
|
|
#exec autoreconf -v -i
|
|
|
|
rm -rf autom4te.cache
|
|
aclocal -I .. -I ../config
|
|
autoheader -I .. -I ../config
|
|
autoconf
|
|
automake --foreign --add-missing --copy Makefile
|
|
automake --foreign include/Makefile
|
|
automake --foreign man/Makefile
|
|
automake --foreign testsuite/Makefile
|