Makefile revision b0ab2dee391dd2cb257faeaba252ee6ecccc5f03
1DIR = ../../libopensles 2ALL = $(DIR)/MPH_to_3DGroup.h $(DIR)/MPH_to_AudioPlayer.h $(DIR)/MPH_to_AudioRecorder.h \ 3 $(DIR)/MPH_to_Engine.h $(DIR)/MPH_to_LEDDevice.h $(DIR)/MPH_to_Listener.h \ 4 $(DIR)/MPH_to_MetadataExtractor.h $(DIR)/MPH_to_MidiPlayer.h $(DIR)/MPH_to_OutputMix.h \ 5 $(DIR)/MPH_to_Vibra.h 6 7$(ALL) : mphtogen 8 ./mphtogen 9 10mphtogen : mphtogen.c MPH_to.c MPH.h MPH_to.h 11 gcc -o $@ -DUSE_DESIGNATED_INITIALIZERS mphtogen.c MPH_to.c 12 13clean : 14 $(RM) mphtogen 15