I'm trying to write a makefile for the Android system that copies files from my local filesystem to out/target/product*/data. Is there anyway to create new directories from within the makefile? What I'm doing right now is:
file := $(TARGET_OUT_DATA)/media/audio/wolf.mp3 $(file) : $(LOCAL_PATH)/media/audio/wolf.mp3 However, this doesn't create /data/media (and /data/media/audio). --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

