Mercurial > audlegacy-plugins
annotate src/modplug/archive/Makefile @ 394:85e4cd9b45d9 trunk
[svn] - back out po target until Makefile is generated properly
author | nenolod |
---|---|
date | Thu, 21 Dec 2006 18:22:00 -0800 |
parents | 88465b96e4b3 |
children | 550c9e382cf8 |
rev | line source |
---|---|
22 | 1 include ../../../mk/rules.mk |
2 include ../../../mk/init.mk | |
3 | |
234 | 4 CXXFLAGS += $(PICFLAGS) -I../../.. $(GTK_CFLAGS) $(AUDACIOUS_CFLAGS) |
22 | 5 |
6 OBJECTIVE_LIBS_NOINST = libarchive.a | |
7 | |
8 SOURCES = archive.cxx \ | |
9 open.cxx \ | |
10 arch_raw.cxx \ | |
11 arch_gzip.cxx \ | |
12 arch_zip.cxx \ | |
13 arch_rar.cxx \ | |
14 arch_bz2.cxx | |
15 | |
16 OBJECTS = ${SOURCES:.cxx=.o} | |
17 | |
18 include ../../../mk/objective.mk | |
43 | 19 |
20 libarchive.a: $(OBJECTS) | |
21 $(AR) cq $@ $(OBJECTS) |