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