# Please use GNU make for this makefile e.g.: gmake

# This is just an adapter to enable the toplevel Makefile to build this
# project.

.PHONY: all clean

ifeq ($(PLATFORM),x86)
all:
	$(MAKE) -f makefile.linux rel32
else ifeq ($(PLATFORM),x64)
all:
	$(MAKE) -f makefile.linux rel64
else
all:
	$(MAKE) -f makefile.linux rel
endif

clean:
	$(MAKE) -f makefile.linux clean
