-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
74 lines (50 loc) · 2.31 KB
/
Makefile
File metadata and controls
74 lines (50 loc) · 2.31 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Copyright (C) 2021-2026 olvwm.xview@gmail.com
# SPDX-License-Identifier: GPL-3.0-only
all : libs olvwm clients
install : install-libs install-olvwm install-clients
dep :
bash -x install_deps
libs :
(cd xview-3.2p1.4; bash Build-LinuxXView.bash libs)
install-libs :
(cd xview-3.2p1.4; make SUBDIRS='lib' install)
olvwm :
(cd xview-3.2p1.4; bash Build-LinuxXView.bash olvwm)
olvwmauto : olgxauto ../build/bin/olvwm
../build/bin/olvwm : xview-3.2p1.4/clients/olvwm-4.1/olvwm
(cd xview-3.2p1.4/clients/olvwm-4.1 ; make install)
xview-3.2p1.4/clients/olvwm-4.1/olvwm : xview-3.2p1.4/clients/olvwm-4.1/Makefile
(cd xview-3.2p1.4/clients/olvwm-4.1 ; make)
install-olvwm :
(cd xview-3.2p1.4/clients; make SUBDIRS='olvwm-4.1' install)
clients :
(cd xview-3.2p1.4; bash Build-LinuxXView.bash clients)
install-clients :
(cd xview-3.2p1.4; make SUBDIRS='clients' install)
xviewauto : olgxauto ../build/include/pixrect ../build/include/xview_private ../build/include/xview
../build/include/xview_private : xview-3.2p1.4/lib/libxview/setup
(cd xview-3.2p1.4/lib/libxview ; ./setup)
../build/include/xview : xview-3.2p1.4/lib/libxview/Makefile
(cd xview-3.2p1.4/lib/libxview ; make && make install)
olgxauto : ../build/lib/libolgx.so
../build/lib/libolgx.so : xview-3.2p1.4/lib/libolgx/.libs/libolgx.so
(cd xview-3.2p1.4/lib/libolgx ; make install)
xview-3.2p1.4/lib/libolgx/.libs/libolgx.so : xview-3.2p1.4/lib/libolgx/Makefile ../build/include/olgx/olgx.h
(cd xview-3.2p1.4/lib/libolgx ; make)
xview-3.2p1.4/lib/libolgx/Makefile : xview-3.2p1.4/configure
(cd xview-3.2p1.4 ; ./configure --prefix=$$(realpath ../../build))
xview-3.2p1.4/configure : xview-3.2p1.4/m4/libtool.m4 xview-3.2p1.4/configure.ac
(cd xview-3.2p1.4 ; autoreconf -i)
xview-3.2p1.4/m4/libtool.m4 : xview-3.2p1.4/configure.ac
(cd xview-3.2p1.4 ; libtoolize --copy)
../build/include/olgx/olgx.h : xview-3.2p1.4/lib/libolgx/olgx.h
(cd xview-3.2p1.4/lib/libolgx ; mkdir -p ../../../../build/include/olgx)
(cd xview-3.2p1.4/lib/libolgx ; make $$(realpath ../../../../build/include/olgx/olgx.h))
../build/include/pixrect : xview-3.2p1.4/lib/pixrect/Makefile
(cd xview-3.2p1.4/lib/pixrect ; make install)
autoclean :
git clean -fdx
clean :
(cd xview-3.2p1.4; make clean distclean Clean)
(cd xview-3.2p1.4; bash Build-LinuxXView.bash clean)
rm -rf xview-3.2p1.4/build