all:
	mkdir -p build
	ghc --make system-properties.hs -odir build -hidir build -o system-properties

clean:
	rm -rf build system-properties

.PHONY: clean all

