mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
c1e8a1e692
x86 and x86_64 both tested and working.
16 lines
351 B
Bash
Executable file
16 lines
351 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Change this script to meet your needs and/or environment.
|
|
|
|
TARGET=x86_64-unknown-haiku
|
|
|
|
MAKE_CMD=make
|
|
|
|
CC="$TARGET-gcc"
|
|
AS="$TARGET-as"
|
|
RANLIB="$TARGET-ranlib"
|
|
AR="$TARGET-ar"
|
|
STRIP="$TARGET-strip"
|
|
export CC AS AR RANLIB STRIP
|
|
|
|
exec $MAKE_CMD HAIKU_OS=1 LINK_M=0 USE_SDL2=1 CC=$CC AS=$AS RANLIB=$RANLIB AR=$AR STRIP=$STRIP -f Makefile $*
|