DtMmdb: move to lib directory as a standalone library.

This commit is contained in:
Liang Chang
2022-01-13 00:15:14 +08:00
parent f3baea9faa
commit e93b2bc626
589 changed files with 31 additions and 2985 deletions

View File

@@ -0,0 +1,18 @@
MAINTAINERCLEANFILES = Makefile.in
noinst_LTLIBRARIES = libcompression.la
libcompression_la_CXXFLAGS = -I..
libcompression_la_SOURCES = abs_agent.C zip.C huffman.C trie.C code.C lzss.C \
sgml.C ps.C
AM_LFLAGS = -8 -s
CLEANFILES = sgml.C ps.C
sgml.C: sgml.ll
$(LEX) $(AM_LFLAGS) -P sgml -o $@ $<
ps.C: ps.ll
$(LEX) $(AM_LFLAGS) -P ps -o $@ $<