Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
split screen.c into layout.c and tag.c (because the view is an implicit mixture of...
[dwm.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index
066643e
..
4af6a3d
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-1,9
+1,9
@@
# dwm - dynamic window manager
# dwm - dynamic window manager
-# (C)opyright MMVI Anselm R. Garbe
+# (C)opyright MMVI
-MMVII
Anselm R. Garbe
include config.mk
include config.mk
-SRC = client.c
draw.c even
t.c main.c tag.c util.c
+SRC = client.c
event.c layou
t.c main.c tag.c util.c
OBJ = ${SRC:.c=.o}
all: options dwm
OBJ = ${SRC:.c=.o}
all: options dwm
@@
-13,7
+13,6
@@
options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
- @echo "LD = ${LD}"
.c.o:
@echo CC $<
.c.o:
@echo CC $<
@@
-26,8
+25,8
@@
config.h:
@cp config.default.h $@
dwm: ${OBJ}
@cp config.default.h $@
dwm: ${OBJ}
- @echo
LD
$@
- @${
LD
} -o $@ ${OBJ} ${LDFLAGS}
+ @echo
CC -o
$@
+ @${
CC
} -o $@ ${OBJ} ${LDFLAGS}
@strip $@
clean:
@strip $@
clean: