diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-08-25 18:47:00 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-08-25 18:47:00 +0200 |
| commit | b5d121dc1ca4edc0cfff888ba411f0837e6e0ebc (patch) | |
| tree | 35a3aef6d494c93674922f6b5500e0d273cb0848 /Makefile | |
| parent | bc0f09dce9fb9420ea1d5c10ebfacf50916b10af (diff) | |
| download | vis-b5d121dc1ca4edc0cfff888ba411f0837e6e0ebc.tar.gz vis-b5d121dc1ca4edc0cfff888ba411f0837e6e0ebc.tar.xz | |
Move motion related stuff into own file
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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} |
