File: Makefile

package info (click to toggle)
debocker 0.2.6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 152 kB
  • sloc: python: 557; sh: 56; makefile: 19
file content (10 lines) | stat: -rw-r--r-- 141 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
TEST_FILES := $(wildcard test-*.sh)
TESTS := $(TEST_FILES:.sh=.test)

testall: $(TESTS)

%.test:
	bash $*.sh > $@ 2>&1

clean:
	rm -f *.test