The unified diff between revisions [afdbb938..] and [c2301346..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'src/lsi/Makefile'

#
# old_revision [afdbb9388305ae66464ad4acb0437922656e3059]
# new_revision [c2301346be8a3f197425575f91b4910582a22a62]
#
# patch "src/lsi/Makefile"
#  from [1345a82aeacb32dcd1c90dd59c46be291477403c]
#    to [c00858097a6f271fbfea57ba936c38008c8d78dd]
#
============================================================
--- src/lsi/Makefile	1345a82aeacb32dcd1c90dd59c46be291477403c
+++ src/lsi/Makefile	c00858097a6f271fbfea57ba936c38008c8d78dd
@@ -5,6 +5,9 @@ SRCS=	main.c vm.c plugins.c dmx.c midi.c
 OBJS=	main.o vm.o plugins.o dmx.o midi.o beatdetect.o fft.o map3d.o mouse.o
 SRCS=	main.c vm.c plugins.c dmx.c midi.c beatdetect.c fft.c map3d.c mouse.c
 
+OBJS+=	abi.o
+SRCS+=	abi.c
+
 COMMONOBJS=	mem.o hash.o
 COMMONDIR=	../common
 
@@ -20,6 +23,12 @@ lsi: ${OBJS}
 lsi: ${OBJS}
 	${LINK.c} -o ${.TARGET} ${PROGOBJS} ${LDLIBS}
 
+abi.c:	abispec makeabi
+	./makeabi abispec
+
+abi.lh:	abispec makeabi
+	./makeabi abispec
+
 install: lsi
 	${INSTALL} -d ${PREFIX}/bin
 	${INSTALL} -c lsi ${PREFIX}/bin/lsi
@@ -28,4 +37,4 @@ clean:
 	mkdep -- ${CFLAGS} ${CPPFLAGS} ${SRCS}
 
 clean:
-	rm -f ${OBJS} lsi
+	rm -f ${OBJS} lsi abi.c abi.lh