mirror of
https://github.com/love2d/love.git
synced 2026-08-15 15:51:12 +02:00
10 lines
233 B
Bash
10 lines
233 B
Bash
#!/bin/bash
|
|
echo
|
|
echo " * Remember to run 'sh platform/unix/gen-makefile' if you've added/removed any files under src/ before running this script"
|
|
echo
|
|
autoheader # Gimmie config.h.in
|
|
libtoolize --force
|
|
aclocal
|
|
autoconf
|
|
automake -a
|