-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure
executable file
·38 lines (36 loc) · 913 Bytes
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/sh
case "$1" in
djgpp)
echo "PLATFORM=djgpp " > makefile.cfg
echo "Configuration complete. Now run \`make'."
;;
linux)
echo "PLATFORM=linux " > makefile.cfg
echo "Configuration complete. Now run \`make'."
;;
macosx)
echo "PLATFORM=macosx " > makefile.cfg
echo "Configuration complete. Now run \`make'."
;;
mingw)
echo "PLATFORM=mingw " > makefile.cfg
echo "Configuration complete. Now run \`make'."
;;
*)
echo "Usage: configure target"
echo
echo "You did not specify a platform to configure Ultimate Blocks for."
echo
echo Possible targets:
echo
echo " djgpp"
echo " linux"
echo " macosx"
echo " mingw"
echo
echo "Allegro, DUMB and aldumb must be installed on all platforms. Static libraries"
echo "will be used for Mac OS X and MinGW targets."
echo
echo "All options are case-sensitive."
;;
esac;