mirror of
https://github.com/jordansissel/fpm
synced 2025-08-28 03:51:42 +02:00
12 lines
140 B
Makefile
12 lines
140 B
Makefile
TESTS=$(shell git ls-files '*.test')
|
|
|
|
.PHONY: test
|
|
test: $(TESTS)
|
|
|
|
.PHONY: $(TESTS)
|
|
$(TESTS):
|
|
@sh test.sh $@
|
|
|
|
clean:
|
|
rm *.deb *.rpm *.gem
|