mirror of
https://github.com/Netflix/dial-reference.git
synced 2026-06-08 02:49:58 +00:00
Restrict default build to acceptable Netflix and YouTube origin headers; created new debug makefile target for full whitelist testing.
11 lines
270 B
Makefile
11 lines
270 B
Makefile
DIRS = client
|
|
DIRS += server
|
|
|
|
all:
|
|
for dir in $(DIRS); do (make -C $$dir || exit 1) || exit 1; done
|
|
debug:
|
|
for dir in $(DIRS); do (make debug -C $$dir || exit 1) || exit 1; done
|
|
clean:
|
|
for dir in $(DIRS); do (make clean -C $$dir || exit 1) || exit 1; done
|
|
|