Home | History | Annotate | Download | only in genext2fs
      1 # Copyright 2008 The Android Open Source Project
      2 
      3 LOCAL_PATH:= $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SRC_FILES := \
      7 	genext2fs.c
      8 
      9 LOCAL_CFLAGS := -O2 -g -Wall -DHAVE_CONFIG_H
     10 
     11 LOCAL_MODULE := genext2fs
     12 
     13 include $(BUILD_HOST_EXECUTABLE)
     14 
     15