annotate src/modplug/archive/Makefile @ 121:b59bca84e3cd trunk

[svn] - add xmms-alarm port
author nenolod
date Thu, 26 Oct 2006 00:10:28 -0700
parents 3e9c308cea60
children 88465b96e4b3
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
eab0c4241348 [svn] - finish up on the Makefile reduction
nenolod
parents:
diff changeset
4 CXXFLAGS += $(PICFLAGS) -I../../..
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)