Codebase list japi-compliance-checker / upstream/2.4+git20210913.2.40508a9 Makefile
upstream/2.4+git20210913.2.40508a9

Tree @upstream/2.4+git20210913.2.40508a9 (Download .tar.gz)

Makefile @upstream/2.4+git20210913.2.40508a9raw · history · blame

prefix ?= /usr

.PHONY: all

all:
	echo "Nothing to build."

install:
	perl Makefile.pl -install -prefix "$(prefix)"

uninstall:
	perl Makefile.pl -remove -prefix "$(prefix)"

clean:
	echo "Nothing to clean up."