Codebase list japi-compliance-checker / scrub-obsolete/main Makefile
scrub-obsolete/main

Tree @scrub-obsolete/main (Download .tar.gz)

Makefile @scrub-obsolete/mainraw · 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."