]> git.armaanb.net Git - dwm.git/blobdiff - Makefile
split screen.c into layout.c and tag.c (because the view is an implicit mixture of...
[dwm.git] / Makefile
index 9ef219a53c575f6adbbf5a8ae7f0e594ad0831fa..4af6a3d0b31b0ec1c0275ece23655b54431b7662 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,12 @@
 # dwm - dynamic window manager
-#   (C)opyright MMVI Anselm R. Garbe
+#   (C)opyright MMVI-MMVII Anselm R. Garbe
 
 include config.mk
 
-SRC = client.c draw.c event.c main.c tag.c util.c
+SRC = client.c event.c layout.c main.c tag.c util.c
 OBJ = ${SRC:.c=.o}
 
 all: options dwm
-       @echo finished
 
 options:
        @echo dwm build options:
@@ -26,7 +25,7 @@ config.h:
        @cp config.default.h $@
 
 dwm: ${OBJ}
-       @echo LD $@
+       @echo CC -o $@
        @${CC} -o $@ ${OBJ} ${LDFLAGS}
        @strip $@