Files
Bento4/Build/Makefiles/Aac2Mp4.mak
2008-10-14 22:59:31 +00:00

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