Skip to content
Snippets Groups Projects
Commit 4b5c4d07 authored by deuce's avatar deuce
Browse files

Fix bug in last commit.

parent cd97aa7f
Branches
Tags
No related merge requests found
......@@ -55,16 +55,15 @@ endif
os := $(shell echo $(os) | tr '[A-Z]' '[a-z]' | tr ' ' '_')
machine := $(shell if uname -m | egrep -v "(i[3456789]|x)86" > /dev/null; then uname -m | tr "[A-Z]" "[a-z]" | tr " " "_" ; fi)
ifeq ($(machine),sun4u)
CFLAGS += -D__BIG_ENDIAN__
endif
ifeq ($(machine),)
machine := $(os)
else
machine := $(os).$(machine)
endif
ifeq ($(machine),sun4u)
CFLAGS += -D__BIG_ENDIAN__
endif
LIBODIR := $(CCPRE).$(machine).lib.$(BUILDPATH)
EXEODIR := $(CCPRE).$(machine).exe.$(BUILDPATH)
LDFLAGS += -L$(LIBODIR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment