about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-10 16:38:18 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-10 16:38:18 +0200
commit1076f2b6b3d3751d5d5db6fcb9ac8c247e04e893 (patch)
treea00e708e8a396f1836b29671939e9921c682465e /Makefile
downloaddwm-1076f2b6b3d3751d5d5db6fcb9ac8c247e04e893.tar.gz
initial import
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..fff5ee1
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,23 @@
+# gridwm - grid window manager
+#   (C)opyright MMVI Anselm R. Garbe
+
+include config.mk
+
+SRC      = wm.c
+OBJ      = ${SRC:.c=.o}
+
+all: gridwm
+	@echo finished
+
+.c.o:
+	@echo CC $<
+	@${CC} -c ${CFLAGS} $<
+
+${OBJ}: wm.h
+
+gridwm: ${OBJ}
+	@echo LD $@
+	@${CC} -o $@ ${OBJ} ${X11LDFLAGS}
+
+clean:
+	rm -f gridwm *.o
'>e1eefb8a ^
248e789e ^
224474d7 ^

248e789e ^


224474d7 ^


248e789e ^











224474d7 ^
248e789e ^


248e789e ^

e1eefb8a ^

















248e789e ^

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