blob: 5cf20ae82116ea8659a5529854f942c5aa5a0b37 (
plain)
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
|
ROOT = .
include $(ROOT)/env_var.status
include $(ROOT)/mak/config.mak
DIRS = src
TEST_DIRS =
PEGASUS_ENABLE_CQL = false
include $(ROOT)/mak/recurse.mak
.PHONY: FORCE
FORCE:
minimal: FORCE
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Common -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/General -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/slp/slp_client -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Client -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Config -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Query/QueryCommon -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/WQL -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Query/QueryExpression -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Provider -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Repository -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/ExportServer -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Listener -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Server/ProviderRegistrationManager -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Handler -f Makefile
$(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/IndicationService -f Makefile
|