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