about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-02-19 15:17:31 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-02-19 15:17:31 +0100
commitf8415019d4edc1cd4f310adb256e6656e85bfe75 (patch)
tree2813e15f6dbd4a3c1326a3d2c08ab2bcea3c61af /Makefile
parent238dd5d2b15b8bdc0f05d5be7f86a1ca03d2920b (diff)
downloaddwm-f8415019d4edc1cd4f310adb256e6656e85bfe75.tar.gz
draw.c is useless (belongs to main.c now)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a9f129d..221efa4 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 
 include config.mk
 
-SRC = client.c draw.c event.c main.c screen.c util.c
+SRC = client.c event.c main.c screen.c util.c
 OBJ = ${SRC:.c=.o}
 
 all: options dwm
b391bdb14b0106385acc5daf6'>^
0e2fbeb3 ^
a7a28506 ^











ae08e820 ^
a7a28506 ^


0e2fbeb3 ^
a7a28506 ^
0e2fbeb3 ^
a7a28506 ^









ae08e820 ^
a7a28506 ^


0e2fbeb3 ^
a7a28506 ^
0e2fbeb3 ^
a7a28506 ^









ae08e820 ^
0e2fbeb3 ^
a7a28506 ^











ae08e820 ^
0e2fbeb3 ^
a7a28506 ^











ae08e820 ^
a7a28506 ^


0e2fbeb3 ^
a7a28506 ^
0e2fbeb3 ^
a7a28506 ^

5afb296e ^
0338d136 ^
5afb296e ^

0338d136 ^

571665ee ^
5afb296e ^

0338d136 ^
5afb296e ^
571665ee ^
0338d136 ^
571665ee ^


0338d136 ^

571665ee ^




0338d136 ^
571665ee ^

0338d136 ^
571665ee ^


0338d136 ^

571665ee ^




0338d136 ^
571665ee ^





0338d136 ^





















2c15aba9 ^
571665ee ^


0338d136 ^
571665ee ^


0338d136 ^
571665ee ^
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185