SPHINX ?= sphinx-build
SRC = ./source
TARGET = ./html

all:
	$(SPHINX) -b html $(SRC) $(TARGET)

clean:
	rm -rvf $(TARGET)
