Skip to content
Snippets Groups Projects
Makefile 356 B
Newer Older
Gabriel's avatar
Gabriel committed
.PHONY: install
install:
	${MAKE} -C encoding install
Gabriel's avatar
Gabriel committed
	@echo "Add to ~/.pvs.lisp:"
	@echo "--------8<----------"
	cat tools/load-personoj.lisp
	@echo "(load-personoj)"
	@echo "--------8<----------"
Gabriel's avatar
Gabriel committed

.PHONY: encoding
encoding:
Gabriel's avatar
Gabriel committed
	${MAKE} -C encoding
gabrielhdt's avatar
gabrielhdt committed

.PHONY: tests
tests:
	${MAKE} -C tests
gabrielhdt's avatar
gabrielhdt committed

.PHONY: clean
clean:
	find . -type f -name "*.lpo" -exec rm -f {} +