-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #143 from IBMStreams/develop
2.0.1
- Loading branch information
Showing
5 changed files
with
36 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Licensed Materials - Property of IBM | ||
# Monitoring Toolkit for IBM Streams | ||
# (c) Copyright IBM Corp. 2019 | ||
# All rights reserved. | ||
|
||
DIRS := $(shell for x in *; do if [ -d $$x ]; then echo -n "$$x "; fi; done) | ||
$(info Samples to build: $(DIRS)) | ||
$(info ) | ||
|
||
.PHONY: all clean | ||
|
||
all: | ||
for x in $(DIRS); do echo -e "\n######## make sample $$x ########"; cd $$x; make all; cd -; done | ||
|
||
clean: | ||
for x in $(DIRS); do cd $$x; make clean; cd -; done | ||
|