689c3e98c7
AtomicParsley is a lightweight command line program for reading, parsing and setting metadata into MPEG-4 files supporting these styles of metadata: * iTunes-style metadata into .mp4, .m4a, .m4p, .m4v, .m4b files * 3gp-style assets (3GPP TS 26.444 version 6.4.0 Release 6 specification conforming) in 3GPP, 3GPP2, MobileMP4 & derivatives * ISO copyright notices at movie & track level for MPEG-4 & derivatives * uuid private user extension text & file embedding for MPEG-4 & derivatives
17 lines
370 B
Makefile
17 lines
370 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/11/06 14:29:14 sthen Exp $
|
|
|
|
PROG= AtomicParsley
|
|
SRCS= AP_commons.cpp AtomicParsley_genres.cpp AP_iconv.cpp \
|
|
AtomicParsley.cpp AP_AtomExtracts.cpp APar_sha1.cpp \
|
|
APar_uuid.cpp main.cpp
|
|
NOMAN =
|
|
BINDIR = ${TRUEPREFIX}/bin
|
|
LDFLAGS = -lstdc++ -lm
|
|
|
|
.SUFFIXES: .cpp
|
|
|
|
.cpp.o: ${OBJS}
|
|
$(CXX) -c $(CXXFLAGS) $<
|
|
|
|
.include <bsd.prog.mk>
|