mirror of
https://github.com/david-schmidt/gsport.git
synced 2025-01-16 22:30:25 +00:00
Make architecture on OSX be variable (ppc, i386, x86_64)
This commit is contained in:
parent
632f67aea9
commit
e2758d666d
@ -28,7 +28,7 @@ specials_clean:
|
|||||||
|
|
||||||
# Mac builds:
|
# Mac builds:
|
||||||
gsportmac: $(OBJECTS) compile_time.o
|
gsportmac: $(OBJECTS) compile_time.o
|
||||||
$(CC) $(CCOPTS) $(LDOPTS) -arch ppc $(OBJECTS) compile_time.o $(LDFLAGS) -o gsport $(EXTRA_LIBS) -prebind -framework Carbon -framework Quicktime
|
$(CC) $(CCOPTS) $(LDOPTS) -arch $(ARCH) $(OBJECTS) compile_time.o $(LDFLAGS) -o gsport $(EXTRA_LIBS) -prebind -framework Carbon -framework Quicktime
|
||||||
mkdir -p ../GSport.app/Contents/Resources/English.lproj/main.nib
|
mkdir -p ../GSport.app/Contents/Resources/English.lproj/main.nib
|
||||||
mkdir -p ../GSport.app/Contents/MacOS
|
mkdir -p ../GSport.app/Contents/MacOS
|
||||||
mv gsport ../GSport.app/Contents/MacOS/GSport
|
mv gsport ../GSport.app/Contents/MacOS/GSport
|
||||||
|
@ -4,7 +4,8 @@ OBJECTS = $(OBJECTS1) scc_macdriver.o macsnd_driver.o macdriver_generic.o macdri
|
|||||||
CCOPTS = -O2 -DMAC
|
CCOPTS = -O2 -DMAC
|
||||||
SUFFIX =
|
SUFFIX =
|
||||||
NAME = gsportmac
|
NAME = gsportmac
|
||||||
|
ARCH = ppc
|
||||||
|
|
||||||
XOPTS = -Wall -fpascal-strings -mdynamic-no-pic -arch ppc
|
XOPTS = -Wall -fpascal-strings -mdynamic-no-pic -arch $(ARCH)
|
||||||
XLIBS =
|
XLIBS =
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user