-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathMakefile
More file actions
47 lines (31 loc) · 1.73 KB
/
Makefile
File metadata and controls
47 lines (31 loc) · 1.73 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/make -f
test:
phpunit --exclude-group "integration" tests
test-integration:
./tests/run_integration_test.sh
package: test
#@echo -n ""
release: package
#@echo -n ""
international_autocomplete_api:
php examples/InternationalAutocompleteExample.php
international_postal_code_api:
php examples/InternationalPostalCodeExample.php
international_street_api:
php examples/InternationalExample.php
us_autocomplete_pro_api:
php examples/USAutocompleteProExample.php
us_enrichment_api:
php examples/USEnrichmentExample.php && php examples/USEnrichmentGeoReferenceExample.php && php examples/USEnrichmentRiskExample.php && php examples/USEnrichmentSecondaryExample.php && php examples/USEnrichmentGenericExample.php
us_extract_api:
php examples/USExtractExample.php
us_reverse_geo_api:
php examples/USReverseGeoExample.php
us_street_iana_timezone_api:
php examples/UsStreetIanaTimeZoneExample.php
us_street_api:
php examples/UsStreetSingleAddressExample.php && php examples/UsStreetMultipleAddressesExample.php && php examples/UsStreetComponentAnalysisExample.php && php examples/UsStreetIanaTimeZoneExample.php && php examples/USStreetLookupsWithMatchStrategyExamples.php
us_zipcode_api:
php examples/UsZIPCodeSingleLookupExample.php && php examples/UsZIPCodeMultipleLookupsExample.php
examples: international_autocomplete_api international_postal_code_api international_street_api us_autocomplete_pro_api us_enrichment_api us_extract_api us_reverse_geo_api us_street_api us_zipcode_api
.PHONY: test package release examples international_autocomplete_api international_postal_code_api international_street_api us_autocomplete_pro_api us_enrichment_api us_extract_api us_reverse_geo_api us_street_api us_street_iana_timezone_api us_zipcode_api