|
Revision 2, 0.5 kB
(checked in by yumileroy, 17 years ago)
|
|
[svn] * Proper SVN structure
Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00
|
| Line | |
|---|
| 1 | # The input Makefile for the main mpq-tools |
|---|
| 2 | |
|---|
| 3 | lib_LTLIBRARIES = libmpq.la |
|---|
| 4 | noinst_HEADERS = explode.h huffman.h wave.h common.h |
|---|
| 5 | |
|---|
| 6 | # The directory where the include files will be installed. |
|---|
| 7 | libmpq_includedir = $(includedir)/libmpq |
|---|
| 8 | |
|---|
| 9 | # Which header files to install. |
|---|
| 10 | libmpq_include_HEADERS = mpq.h |
|---|
| 11 | |
|---|
| 12 | libmpq_la_SOURCES = $(GENERAL_SRCS) |
|---|
| 13 | libmpq_la_LDFLAGS = -release $(LIBMPQ_VERSION) |
|---|
| 14 | libmpq_la_LIBADD = @Z_LIBS@ |
|---|
| 15 | |
|---|
| 16 | GENERAL_SRCS = \ |
|---|
| 17 | common.c \ |
|---|
| 18 | huffman.c \ |
|---|
| 19 | extract.c \ |
|---|
| 20 | explode.c \ |
|---|
| 21 | mpq.c \ |
|---|
| 22 | parser.c \ |
|---|
| 23 | wave.c |
|---|