From b5d121dc1ca4edc0cfff888ba411f0837e6e0ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Mon, 25 Aug 2014 18:47:00 +0200 Subject: Move motion related stuff into own file --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Makefile') 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} -- cgit v1.2.3