Skip to content
Snippets Groups Projects
Makefile 352 B
Newer Older
gabrielhdt's avatar
gabrielhdt committed
LP = lambdapi
hondet's avatar
hondet committed
LP_SRC  != find encodings -type f -name "*.lp"
gabrielhdt's avatar
gabrielhdt committed
LP_OBJ = ${LP_SRC:S/.lp$/.lpo/}

.SUFFIXES: .lpo .lp

all: ${LP_OBJ}

.lp.lpo:
	${LP} check --gen-obj $<

.PHONY: install
install: ${LP_OBJ} lambdapi.pkg
	${LP} install lambdapi.pkg ${LP_SRC}
gabrielhdt's avatar
gabrielhdt committed

.PHONY: uninstall
uninstall:
	${LP} uninstall lambdapi.pkg

.PHONY: clean
clean:
gabrielhdt's avatar
gabrielhdt committed
	rm -f ${LP_OBJ}