aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2014-09-01 22:01:35 +0200
committerMarc André Tanner <mat@brain-dump.org>2014-09-01 22:01:35 +0200
commit28db11a2c10894d0154786646234b060bc9a6202 (patch)
treeb7c48ca473a287cb9e426ce337dd9c4e9aed1156 /Makefile
parentc72fe77e5d3cf4ecb3b691a5fa582d0e96b5ec1e (diff)
downloadvis-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--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b39cd7e..3884944 100644
--- a/Makefile
+++ b/Makefile
@@ -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