File: Makefile

package info (click to toggle)
only 0.0.6.0-2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 208 kB
  • sloc: haskell: 304; sh: 81; makefile: 12
file content (8 lines) | stat: -rw-r--r-- 134 bytes parent folder | download
1
2
3
4
5
6
7
8
all: test

test:
	@echo
	@for TEST in $$(ls t-*) ; do bash $$TEST ; done

clean:
	@if [ x"$$(echo *~)" != x'*~' ] ; then rm -f *~ ; fi