Home | History | Annotate | Download | only in qemud
      1 # Copyright 2008 The Android Open Source Project
      2 
      3 # We're moving the emulator-specific platform libs to
      4 # development.git/tools/emulator/. The following test is to ensure
      5 # smooth builds even if the tree contains both versions.
      6 #
      7 
      8 LOCAL_PATH:= $(call my-dir)
      9 include $(CLEAR_VARS)
     10 
     11 LOCAL_SRC_FILES:= \
     12 	qemud.c
     13 
     14 
     15 LOCAL_SHARED_LIBRARIES := \
     16 	libcutils liblog
     17 
     18 LOCAL_MODULE:= qemud
     19 
     20 include $(BUILD_EXECUTABLE)
     21