diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-20 10:49:53 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-20 10:49:53 +0100 |
commit | 8012fcf3334148d2b39646fd372a7514cc74c250 (patch) | |
tree | 157855dd25044e50f7696eb57655c88c6069ac2e /Makefile | |
parent | 6bc4556ebd7f48f52f9a446e53d1705d8fd79b27 (diff) | |
download | dwm-8012fcf3334148d2b39646fd372a7514cc74c250.tar.gz |
split screen.c into layout.c and tag.c (because the view is an implicit mixture of both)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 221efa4..4af6a3d 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ include config.mk -SRC = client.c event.c main.c screen.c util.c +SRC = client.c event.c layout.c main.c tag.c util.c OBJ = ${SRC:.c=.o} all: options dwm |