HFLAGS = 
#HFLAGS = -O2

all: sos

sos: sos.hs
	ghc $(HFLAGS) -o sos sos.hs

clean:
	rm -f sos sos.hi sos.o
