7 lines
196 B
Makefile
7 lines
196 B
Makefile
PREFIX=$(shell readlink -f $$(type -p swipl) | grep -o '/.*lib[^/]*/[^/]*')
|
|
IMAGE=$(PREFIX)/library/pldoc/up.gif
|
|
|
|
all: show.pl $(IMAGE)
|
|
printf "show('%s').\n" $(IMAGE) | swipl -s show.pl
|
|
|
|
clean:
|