You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
615 B
17 lines
615 B
DIR = ../../src/autogen
|
|
ALL = $(DIR)/MPH_to_3DGroup.h $(DIR)/MPH_to_AudioPlayer.h $(DIR)/MPH_to_AudioRecorder.h \
|
|
$(DIR)/MPH_to_Engine.h $(DIR)/MPH_to_LEDDevice.h $(DIR)/MPH_to_Listener.h \
|
|
$(DIR)/MPH_to_MetadataExtractor.h $(DIR)/MPH_to_MidiPlayer.h $(DIR)/MPH_to_OutputMix.h \
|
|
$(DIR)/MPH_to_Vibra.h
|
|
|
|
$(ALL) : mphtogen
|
|
./mphtogen
|
|
|
|
mphtogen : mphtogen.c MPH_to.c MPH.h MPH_to.h
|
|
# Add -DANDROID if both (a) building for Android, and (b) not
|
|
# using -DUSE_DESIGNATED_INITIALIZERS in ../../src/Android.mk
|
|
gcc -o $@ -DUSE_DESIGNATED_INITIALIZERS -Wall -Werror mphtogen.c MPH_to.c
|
|
|
|
clean :
|
|
$(RM) mphtogen
|