-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (20 loc) · 781 Bytes
/
Makefile
File metadata and controls
27 lines (20 loc) · 781 Bytes
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
all: Sources/SDK/Makefile
$(MAKE) -C Sources/SDK
Sources/SDK/Makefile: Sources/Build/Build.pri Sources/Build/Current-gen.ver Sources/SDK/Handles/virtuozzo-sdk.pc
cd Sources/SDK && qmake-qt5 \
ENABLE_LOCAL_DEPS=$$ENABLE_LOCAL_DEPS \
LOCAL_DEPS_INCLUDE=$$LOCAL_DEPS_INCLUDE \
LOCAL_DEPS_LIBS=$$LOCAL_DEPS_LIBS
Sources/Build/Build.pri: Makefile.version Sources/Build/Build.cfg
cd Sources && ./Gen.py
Sources/Build/Current-gen.ver: Sources/Build/Build.pri
Sources/SDK/Handles/virtuozzo-sdk.pc: Sources/Build/Build.pri
install: all
cd Sources/SDK && make install \
ENABLE_LOCAL_DEPS=$$ENABLE_LOCAL_DEPS \
LOCAL_DEPS_INCLUDE=$$LOCAL_DEPS_INCLUDE \
LOCAL_DEPS_LIBS=$$LOCAL_DEPS_LIBS
clean:
$(MAKE) -C Sources/SDK clean
distclean:
$(MAKE) -C Sources/SDK distclean