aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-08-25 18:47:00 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-08-25 18:47:00 +0200
commitb5d121dc1ca4edc0cfff888ba411f0837e6e0ebc (patch)
tree35a3aef6d494c93674922f6b5500e0d273cb0848 /Makefile
parentbc0f09dce9fb9420ea1d5c10ebfacf50916b10af (diff)
downloadvis-b5d121dc1ca4edc0cfff888ba411f0837e6e0ebc.tar.gz
vis-b5d121dc1ca4edc0cfff888ba411f0837e6e0ebc.tar.xz
Move motion related stuff into own file
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 2bcc82e..cd0ca71 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,8 @@
include config.mk
-SRC += vis.c colors.c editor.c text.c
+SRC += vis.c colors.c editor.c text.c text-motions.c text-objects.c
+ALL = ${SRC} util.h editor.h text.h text-motions.h text-objects.h \
+ config.def.h config.mk Makefile LICENSE README vis.1
OBJ = ${SRC:.c=.o}
all: clean options vis
@@ -36,8 +38,7 @@ clean:
dist: clean
@echo creating dist tarball
@mkdir -p vis-${VERSION}
- @cp -R LICENSE Makefile README config.def.h config.mk \
- ${SRC} editor.h text.h util.h vis.1 vis-${VERSION}
+ @cp -R ${ALL} vis-${VERSION}
@tar -cf vis-${VERSION}.tar vis-${VERSION}
@gzip vis-${VERSION}.tar
@rm -rf vis-${VERSION}