mirror of
https://github.com/love2d/love.git
synced 2026-08-15 15:51:12 +02:00
c4fd3d985d
Made automagic script run gen-makefile (took me half an hour to figure out I had to do this first...) Also made sure it's running from the right path :)
11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
if ! sh platform/unix/gen-makefile; then
|
|
echo "You should be doing this from the root directory of the project."
|
|
exit 1
|
|
fi
|
|
autoheader # Gimmie config.h.in
|
|
libtoolize --force
|
|
aclocal
|
|
autoconf
|
|
automake -a
|