You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
260 B
13 lines
260 B
PREFIX ?= /usr
|
|
|
|
build:
|
|
|
|
install:
|
|
install -d $(DESTDIR)$(PREFIX)/share/distro-info
|
|
install -m 644 $(wildcard *.csv) $(DESTDIR)$(PREFIX)/share/distro-info
|
|
|
|
test:
|
|
./validate-csv-data -d debian.csv
|
|
./validate-csv-data -u ubuntu.csv
|
|
|
|
.PHONY: build install test
|
|
|