# This Makefile is for Linux
# If gcc-4.x fails, try gcc-3.4.3 please.

.PHONY: all untar patch

all:
	./compile

untar:
	./compile untaronly

patch:
	./compile patchonly

