aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-09-16 20:14:09 +0200
committerAnselm R. Garbe <garbeam@gmail.com>2007-09-16 20:14:09 +0200
commit06ae8944344cd6f7d0aa007b7b036e77cb87fdf1 (patch)
treef8303fafda2c9fcb20b87a11e28454cd10668455 /Makefile
parentb97783b07feae30f9df12c1a720d17a2dc877018 (diff)
downloaddmenu-06ae8944344cd6f7d0aa007b7b036e77cb87fdf1.tar.gz
dmenu-06ae8944344cd6f7d0aa007b7b036e77cb87fdf1.tar.bz2
dmenu-06ae8944344cd6f7d0aa007b7b036e77cb87fdf1.zip
micromizing dmenu step 1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 35e30f5..dac3b6e 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
include config.mk
-SRC = draw.c main.c util.c
+SRC = dmenu.c
OBJ = ${SRC:.c=.o}
all: options dmenu
@@ -18,7 +18,7 @@ options:
@echo CC $<
@${CC} -c ${CFLAGS} $<
-${OBJ}: dmenu.h config.mk
+${OBJ}: config.h config.mk
dmenu: ${OBJ}
@echo CC -o $@
@@ -31,7 +31,7 @@ clean:
dist: clean
@echo creating dist tarball
@mkdir -p dmenu-${VERSION}
- @cp -R LICENSE Makefile README config.mk dmenu.1 dmenu.h dmenu_path ${SRC} dmenu-${VERSION}
+ @cp -R LICENSE Makefile README config.mk dmenu.1 config.h dmenu_path ${SRC} dmenu-${VERSION}
@tar -cf dmenu-${VERSION}.tar dmenu-${VERSION}
@gzip dmenu-${VERSION}.tar
@rm -rf dmenu-${VERSION}