fix makefile for building on linux

This may break OS X PowerPC, but I don't have such a machine to test on
at the moment.
This commit is contained in:
Joel Dice 2008-06-24 14:58:58 -06:00
parent 8512d6c74c
commit a85cf0115d

View File

@ -1,10 +1,10 @@
MAKEFLAGS = -s
#MAKEFLAGS = -s
name = avian
version = 0.1.1
build-arch = "$(shell uname -m)"
ifeq ($(build-arch),"Power Macintosh")
build-arch = $(shell uname -m)
ifeq ($(build-arch),Power)
build-arch = powerpc
endif
ifeq ($(build-arch),i586)