mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-03-26 03:03:32 +01:00
13 lines
246 B
Makefile
13 lines
246 B
Makefile
.PHONY: install deinstall refresh
|
|
|
|
install:
|
|
$(MAKE) -C docs html $(MAKEFLAGS)
|
|
$(MAKE) -C docs install $(MAKEFLAGS)
|
|
|
|
deinstall:
|
|
$(MAKE) -C docs clean $(MAKEFLAGS)
|
|
|
|
refresh:
|
|
$(MAKE) -C docs clean $(MAKEFLAGS)
|
|
$(MAKE) -C docs html $(MAKEFLAGS)
|