From 37a0afeabb617f051e102c5cc45f0b9921ad3962 Mon Sep 17 00:00:00 2001 From: Daniel Loffgren Date: Fri, 18 Sep 2015 18:21:33 +0000 Subject: [PATCH] Updated Makefile to support editline and the rest of the new debugger code git-svn-id: svn+ssh://svn.phoenixbox.net/svn/apple1/trunk@38 64f78de7-aa59-e511-a0e8-0002a5492df0 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b233f1c..2b523da 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PROG= a1 -SRCS= apple1/main.c apple1/pia.c v6502/v6502/log.c +SRCS= apple1/main.c apple1/pia.c v6502/v6502/log.c v6502/v6502/debugger.c v6502/v6502/breakpoint.c V6502_PREFIX= v6502 LIBV6502_DIR= $(V6502_PREFIX)/v6502 @@ -10,7 +10,7 @@ LIBDIS6502_DIR= $(V6502_PREFIX)/dis6502 LIBDIS6502= $(LIBDIS6502_DIR)/libdis6502.a CFLAGS+= -I$(V6502_PREFIX) -std=c99 -LDFLAGS+= -lcurses -ldis6502 -las6502 -lv6502 -L$(LIBV6502_DIR) -L$(LIBAS6502_DIR) -L $(LIBDIS6502_DIR) +LDFLAGS+= -ledit -lcurses -ldis6502 -las6502 -lv6502 -L$(LIBV6502_DIR) -L$(LIBAS6502_DIR) -L $(LIBDIS6502_DIR) OBJS= $(SRCS:.c=.o) all: $(PROG)