JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
implemented fallback for too many clients in stacked mode
[dwm.git] / Makefile
index 2b243ef..23e5fc7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,15 +3,15 @@
 
 include config.mk
 
-SRC = bar.c client.c dev.c draw.c event.c main.c util.c
+SRC = client.c draw.c event.c main.c tag.c util.c
 OBJ = ${SRC:.c=.o}
 MAN1 = dwm.1 
 BIN = dwm
 
-all: config dwm
+all: options dwm
        @echo finished
 
-config:
+options:
        @echo dwm build options:
        @echo "LIBS     = ${LIBS}"
        @echo "CFLAGS   = ${CFLAGS}"
@@ -29,7 +29,7 @@ dwm: ${OBJ}
        @${CC} -o $@ ${OBJ} ${LDFLAGS}
 
 clean:
-       rm -f dwm *.o core
+       rm -f dwm *.o core dwm-${VERSION}.tar.gz
 
 dist: clean
        mkdir -p dwm-${VERSION}