diff loadtools/Makefile @ 85:c5766d12360d

fc-buzplay started
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 27 Oct 2016 05:28:30 +0000
parents 54a6864cabf4
children 684eddecbc62
line wrap: on
line diff
--- a/loadtools/Makefile	Thu Oct 27 05:11:05 2016 +0000
+++ b/loadtools/Makefile	Thu Oct 27 05:28:30 2016 +0000
@@ -1,6 +1,6 @@
 CC=	gcc
 CFLAGS=	-O2
-PROGS=	fc-iram fc-loadtool fc-xram fc-compalram
+PROGS=	fc-iram fc-loadtool fc-xram fc-compalram fc-buzplay
 INSTBIN=/opt/freecalypso/bin
 INSTCONF=/opt/freecalypso/loadtools
 INSTHELP=/opt/freecalypso/helpfiles
@@ -23,6 +23,10 @@
 		hexdecode.o hwparam.o initscript.o labaud.o romload.o sercomm.o\
 		srecreader.o tpinterf.o ttypassthru.o ${EXTRA_OBJ}
 
+BUZPLAY_OBJS=	bpdispatch.o bpmain.o defpath.o flashstubs.o hexdecode.o \
+		hwparam.o labaud.o ltexit.o ltpassthru.o romload.o sercomm.o \
+		srecreader.o tpinterf.o ${EXTRA_OBJ}
+
 all:	${PROGS}
 
 fc-compalram:	${COMPALRAM_OBJS}
@@ -37,6 +41,9 @@
 fc-xram:	${XRAM_OBJS}
 	${CC} ${CFLAGS} -o $@ ${XRAM_OBJS}
 
+fc-buzplay:	${BUZPLAY_OBJS}
+	${CC} ${CFLAGS} -o $@ ${BUZPLAY_OBJS}
+
 install:
 	mkdir -p ${INSTBIN}
 	install -c ${PROGS} ${INSTBIN}