mirror of
https://github.com/axiomatic-systems/Bento4.git
synced 2026-01-12 00:18:59 +08:00
37 lines
1.3 KiB
Makefile
37 lines
1.3 KiB
Makefile
##########################################################################
|
|
#
|
|
# Ap4Dump Program
|
|
#
|
|
# (c) 2002-2008 Axiomatic Systems, LLC
|
|
#
|
|
##########################################################################
|
|
all: mp4dump
|
|
|
|
##########################################################################
|
|
# includes
|
|
##########################################################################
|
|
include $(BUILD_ROOT)/Makefiles/Lib.exp
|
|
|
|
##########################################################################
|
|
# targets
|
|
##########################################################################
|
|
TARGET_SOURCES = Mp4Dump.cpp
|
|
|
|
##########################################################################
|
|
# make path
|
|
##########################################################################
|
|
VPATH += $(SOURCE_ROOT)/Apps/Mp4Dump
|
|
|
|
##########################################################################
|
|
# includes
|
|
##########################################################################
|
|
include $(BUILD_ROOT)/Makefiles/Rules.mak
|
|
|
|
##########################################################################
|
|
# rules
|
|
##########################################################################
|
|
mp4dump: $(TARGET_OBJECTS) $(TARGET_LIBRARY_FILES)
|
|
$(LINK) $(TARGET_OBJECTS) -o $@ $(LINK_LIBRARIES)
|
|
|
|
|