The unified diff between revisions [afdbb938..] and [a7f61676..] 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 [a7f61676c8d04ecf082be8ae39a40b4e7bba3462] # # patch "src/lsi/Makefile" # from [1345a82aeacb32dcd1c90dd59c46be291477403c] # to [4d4540b4f92126f25999c11b07250a886256080b] # ============================================================ --- src/lsi/Makefile 1345a82aeacb32dcd1c90dd59c46be291477403c +++ src/lsi/Makefile 4d4540b4f92126f25999c11b07250a886256080b @@ -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 .depend