about summary refs log blame commit diff stats
path: root/config.mk
blob: a41fe8e9384077f36170d659fc8ed699895804f0 (plain) (tree)
1
2
3
4
5
6
7
             
             


                                    

                   




                               
                   
                                     
                                       
 
       
                                             
                 

                                                       
 




                                                
                     
       
# dwm version
VERSION = 3.7

# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

# includes and libs
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11

# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

# Solaris
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}
#CFLAGS += -xtarget=ultra

# compiler and linker
CC = cc
22399a3bc05406a89f6ad717800b4d9ba41f6e0a'>22399a3 ^
338c083 ^
b355755 ^
1076f2b
72707c2 ^
15abade ^
bf35794 ^
1076f2b

cdbc84b ^
8d11163 ^














cdbc84b ^



1df4559 ^



2aef8b9 ^
1df4559 ^









39677ec ^
439e15d ^
1df4559 ^



2aef8b9 ^

1df4559 ^

f841501 ^
ab3d6a7 ^
2aef8b9 ^
1df4559 ^

3399650 ^
e750878 ^
1df4559 ^


e750878 ^
dba2306 ^
1df4559 ^
b9da4b0 ^
8012fcf ^
1df4559 ^






70c7b43 ^
2aef8b9 ^

1df4559 ^
8012fcf ^
9e8b325 ^
2aef8b9 ^
1df4559 ^
1df4559 ^
9e8b325 ^
8012fcf ^
1df4559 ^


ab3d6a7 ^
2aef8b9 ^
1df4559 ^

4cdbd52 ^

1df4559 ^


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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152