1##########################################################################
2#
3#    Aac2Mp4 Program
4#
5#    (c) 2002-2008 Axiomatic Systems, LLC
6#
7##########################################################################
8
9##########################################################################
10# includes
11##########################################################################
12include $(BUILD_ROOT)/Makefiles/Lib.exp
13
14##########################################################################
15# targets
16##########################################################################
17TARGET_SOURCES = Aac2Mp4.cpp
18
19##########################################################################
20# make path
21##########################################################################
22VPATH += $(SOURCE_ROOT)/Apps/Aac2Mp4
23
24##########################################################################
25# variables
26##########################################################################
27LINK = $(LINK_CPP_OPTIONS) $(OPTIMIZE_CPP) $(DEBUG_CPP) $(PROFILE_CPP)
28
29##########################################################################
30# rules
31##########################################################################
32aac2mp4: $(TARGET_SOURCES:.cpp=.o) $(TARGET_OBJECTS) $(TARGET_LIBRARY_FILES)
33	$(LINK) $(TARGET_OBJECTS) -o $@ $(LINK_LIBRARIES)
34
35##########################################################################
36# includes
37##########################################################################
38include $(BUILD_ROOT)/Makefiles/Rules.mak
39
40
41