SHELL = /bin/sh

all : flail

flail: flail.c powerpc.h s390.h x86.h x86_64.h
	$(CC) -g -Wall -lm -o $@ flail.c

flail64: flail.c powerpc.h s390.h x86.h x86_64.h
	$(CC) -g -Wall -m64 -lm -o $@ flail.c

clean:
	rm -f flail
