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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
1 include ../../../mk/rules.mk
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
2 include ../../../mk/init.mk
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
3
234
88465b96e4b3 [svn] - VFS support
nenolod
parents: 43
diff changeset
4 CXXFLAGS += $(PICFLAGS) -I../../.. $(GTK_CFLAGS) $(AUDACIOUS_CFLAGS)
22
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
5
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
6 OBJECTIVE_LIBS_NOINST = libarchive.a
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
7
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
8 SOURCES = archive.cxx \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
9 open.cxx \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
10 arch_raw.cxx \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
11 arch_gzip.cxx \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
12 arch_zip.cxx \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
13 arch_rar.cxx \
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
14 arch_bz2.cxx
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
15
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
16 OBJECTS = ${SOURCES:.cxx=.o}
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
17
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
18 include ../../../mk/objective.mk
43
3e9c308cea60 [svn] Added some missing targets for the .a files
js
parents: 22
diff changeset
19
3e9c308cea60 [svn] Added some missing targets for the .a files
js
parents: 22
diff changeset
20 libarchive.a: $(OBJECTS)
3e9c308cea60 [svn] Added some missing targets for the .a files
js
parents: 22
diff changeset
21 $(AR) cq $@ $(OBJECTS)