From 28db11a2c10894d0154786646234b060bc9a6202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Mon, 1 Sep 2014 22:01:35 +0200 Subject: Refactor frontend code window.[ch] now contains a somewhat generic editor window which is then enhanced in vis.[ch] with a statusbar. --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3