-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
41 lines (38 loc) · 1.34 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
BIN = ContributionsMktdataExample.exe \
ContributionsPageExample.exe \
CorrelationExample.exe \
EntitlementsVerificationExample.exe \
EntitlementsVerificationSubscriptionExample.exe \
EntitlementsVerificationSubscriptionTokenExample.exe \
EntitlementsVerificationTokenExample.exe \
GenerateTokenExample.exe \
GenerateTokenSubscriptionExample.exe \
IntradayBarExample.exe \
IntradayTickExample.exe \
LocalMktdataSubscriptionExample.exe \
LocalPageSubscriptionExample.exe \
MktdataBroadcastPublisherExample.exe \
MktdataPublisher.exe \
PagePublisherExample.exe \
RefDataExample.exe \
RefDataTableOverrideExample.exe \
RequestServiceExample.exe \
SecurityLookupExample.exe \
SimpleBlockingRequestExample.exe \
SimpleCategorizedFieldSearchExample.exe \
SimpleFieldInfoExample.exe \
SimpleFieldSearchExample.exe \
SimpleHistoryExample.exe \
SimpleIntradayBarExample.exe \
SimpleIntradayTickExample.exe \
SimpleRefDataExample.exe \
SimpleRefDataOverrideExample.exe \
SimpleSubscriptionExample.exe \
SimpleSubscriptionIntervalExample.exe \
SubscriptionCorrelationExample.exe \
SubscriptionWithEventHandlerExample.exe
LFLAGS = /EHsc /O2 /D WIN32 /I..\include
CPPFLAGS = $(LFLAGS) ws2_32.lib ..\lib\blpapi3_64.lib
all: $(BIN)
clean:
-@erase *.obj $(BIN)