add byte list functions for humans
[rrq/lsp-utils.git] / Makefile
1
2 LSPSRC = lsp-dbus-test.lsp
3
4 ## Library
5 LSPLIB = lsp-dbus.a
6
7 LSP_MISC = foop.lsp misc.lsp
8 LSPLIBSRC += $(addprefix lsp-misc/,${LSP_MISC})
9
10 LSP_DBUS = lsp-dbus-connection.lsp lsp-dbus.lsp lsp-dbus-marshal.lsp
11 LSP_DBUS += lsp-dbus-events.lsp 
12 LSPLIBSRC += $(addprefix lsp-dbus/,${LSP_DBUS})
13
14 test0: lsp-dbus-test.lsp ${LSPLIB}
15          ${HOME}/src/borta/packnl/packnl -w $@ $^ -A ${LSPLIB}
16
17 ${LSPLIB}: ${LSPLIBSRC}
18         ar r $@ $^