File: Makefile

package info (click to toggle)
php-async-aws-ses 1.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 320 kB
  • sloc: php: 1,658; makefile: 28
file content (12 lines) | stat: -rw-r--r-- 169 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
.EXPORT_ALL_VARIABLES:

initialize: start-docker
start-docker:
	echo "Noop"

test: initialize
	./vendor/bin/simple-phpunit

clean: stop-docker
stop-docker:
	echo "Noop"