equal
deleted
inserted
replaced
24 # Automatically recognize if building on MorphOS |
24 # Automatically recognize if building on MorphOS |
25 ifeq ($(shell uname), MorphOS) |
25 ifeq ($(shell uname), MorphOS) |
26 MORPHOS:=1 |
26 MORPHOS:=1 |
27 # MorphOS uses UNIX setup too |
27 # MorphOS uses UNIX setup too |
28 UNIX:=1 |
28 UNIX:=1 |
|
29 endif |
|
30 |
|
31 # Automatically recognize if building on BeOS |
|
32 ifeq ($(shell uname), BeOS) |
|
33 BEOS:=1 |
|
34 # BeOS uses UNIX setup too |
|
35 UNIX:=1 |
|
36 # Except that in BeOS 5.0 we need to use net_server, not BONE networking |
|
37 ifeq ($(shell uname -r), 5.0) |
|
38 BEOS_NET_SERVER:=1 |
|
39 endif |
29 endif |
40 endif |
30 |
41 |
31 # FreeBSD uses sdl11 instead of sdl |
42 # FreeBSD uses sdl11 instead of sdl |
32 ifdef FREEBSD |
43 ifdef FREEBSD |
33 SDL-CONFIG:=sdl11-config |
44 SDL-CONFIG:=sdl11-config |