diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-01 22:01:35 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-01 22:01:35 +0200 |
| commit | 28db11a2c10894d0154786646234b060bc9a6202 (patch) | |
| tree | b7c48ca473a287cb9e426ce337dd9c4e9aed1156 /Makefile | |
| parent | c72fe77e5d3cf4ecb3b691a5fa582d0e96b5ec1e (diff) | |
| download | vis-28db11a2c10894d0154786646234b060bc9a6202.tar.gz vis-28db11a2c10894d0154786646234b060bc9a6202.tar.xz | |
Refactor frontend code
window.[ch] now contains a somewhat generic editor window which is
then enhanced in vis.[ch] with a statusbar.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,9 +1,10 @@ include config.mk -SRC += vis.c colors.c editor.c text.c text-motions.c text-objects.c register.c -ALL = ${SRC} util.h editor.h text.h text-motions.h text-objects.h register.h \ - config.def.h config.mk Makefile LICENSE README vis.1 +SRC += vis.c colors.c window.c text.c text-motions.c text-objects.c register.c +HDR = ${SRC:.c=.h} util.h config.def.h +SRC += main.c OBJ = ${SRC:.c=.o} +ALL = ${SRC} ${HDR} config.mk Makefile LICENSE README vis.1 all: clean options vis |
