forked from smartystreets/smartystreets-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
35 lines (23 loc) · 1000 Bytes
/
Makefile
File metadata and controls
35 lines (23 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/make -f
test:
phpunit tests
package: test
#@echo -n ""
release: package
#@echo -n ""
international_autocomplete_api:
php examples/InternationalAutocompleteExample.php
international_street_api:
php examples/InternationalExample.php
us_autocomplete_pro_api:
php examples/USAutocompleteProExample.php
us_extract_api:
php examples/USExtractExample.php
us_reverse_geo_api:
php examples/USReverseGeoExample.php
us_street_api:
php examples/UsStreetSingleAddressExample.php && php examples/UsStreetMultipleAddressesExample.php
us_zipcode_api:
php examples/UsZIPCodeSingleLookupExample.php && php examples/UsZIPCodeMultipleLookupsExample.php
examples: international_autocomplete_api international_street_api us_autocomplete_pro_api us_extract_api us_reverse_geo_api us_street_api us_zipcode_api
.PHONY: test package release examples international_autocomplete_api international_street_api us_autocomplete_pro_api us_extract_api us_reverse_geo_api us_street_api us_zipcode_api