-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
59 lines (49 loc) · 2.21 KB
/
Makefile
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
48
49
50
51
52
53
54
55
56
57
58
59
.PHONY: all
all : com.ibm.streamsx.spl.util com.ibm.streamsx.clickstream Types MessageHubIngest ClkStrmEnrich ClickstreamAggregates ClkStrmElasticSink
Types :
@echo '########################################'
@echo ' Building' $@
@echo '########################################'
cd sample/000_Clickstream_DSX_Types && $(MAKE)
MessageHubIngest : Types com.ibm.streamsx.spl.util
@echo '########################################'
@echo ' Building' $@
@echo '########################################'
cd sample/001_Clickstream_MessageHub_Ingest && $(MAKE)
OfflineIngest : Types com.ibm.streamsx.spl.util
@echo '########################################'
@echo ' Building' $@
@echo '########################################'
cd sample/001_Clickstream_Offline_Ingest && $(MAKE)
ClkStrmEnrich : Types com.ibm.streamsx.spl.util
@echo '########################################'
@echo ' Building' $@
@echo '########################################'
cd sample/002_Clickstream_Enrich && $(MAKE)
ClickstreamAggregates : Types com.ibm.streamsx.clickstream com.ibm.streamsx.spl.util
@echo '########################################'
@echo ' Building' $@
@echo '########################################'
cd sample/003_Clickstream_Aggregates && $(MAKE)
ClkStrmElasticSink : Types com.ibm.streamsx.clickstream com.ibm.streamsx.spl.util
@echo '########################################'
@echo ' Building' $@
@echo '########################################'
cd sample/008_Clickstream_Sink_Elasticsearch && $(MAKE)
com.ibm.streamsx.clickstream :
@echo '########################################'
@echo ' Building' $@
@echo '########################################'
cd com.ibm.streamsx.clickstream && $(MAKE)
com.ibm.streamsx.spl.util :
@echo '########################################'
@echo ' Building' $@
@echo '########################################'
cd com.ibm.streamsx.spl.util && $(MAKE)
clean :
cd sample/000_Clickstream_DSX_Types && $(MAKE) clean
$(MAKE) clean -C sample/001_Clickstream_MessageHub_Ingest
cd sample/002_Clickstream_Enrich && $(MAKE) clean
cd sample/003_Clickstream_Aggregates && $(MAKE) clean
cd sample/008_Clickstream_Sink_Elasticsearch && $(MAKE) clean
cd sample/001_Clickstream_Offline_Ingest && $(MAKE) clean