diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-08-21 14:25:13 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-08-21 14:26:28 +0200 |
commit | 5897ea277abdfd361d65bbf2cca4b93f7c7794f9 (patch) | |
tree | b6a48e5ecd39f8865b0d652da701dd5cfc4719ae /testing/android-tools/Makefile | |
parent | 4c52b5f20f5064ff47f9fb9ae1b431717e768261 (diff) | |
download | aports-5897ea277abdfd361d65bbf2cca4b93f7c7794f9.tar.bz2 aports-5897ea277abdfd361d65bbf2cca4b93f7c7794f9.tar.xz |
testing/android-tools: add mksdcard
Diffstat (limited to 'testing/android-tools/Makefile')
-rw-r--r-- | testing/android-tools/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/testing/android-tools/Makefile b/testing/android-tools/Makefile index 021975d7c9..679df34896 100644 --- a/testing/android-tools/Makefile +++ b/testing/android-tools/Makefile @@ -1,8 +1,8 @@ -all: mkbootimg fastboot adb +all: mkbootimg fastboot adb mksdcard install: install -m755 -d $(DESTDIR)/usr/bin - install -m755 -t $(DESTDIR)/usr/bin mkbootimg fastboot adb + install -m755 -t $(DESTDIR)/usr/bin mkbootimg fastboot adb mksdcard clean: rm -f **/*.o @@ -99,3 +99,12 @@ FASTBOOT_LIBS += -lz -ldl -lpcre fastboot: $(FASTBOOT_SRCS) $(CC) -o $@ $(CFLAGS) $(FASTBOOT_CFLAGS) $(LDFLAGS) $(FASTBOOT_SRCS) $(FASTBOOT_LIBS) + + +MKSDCARD_SRCS += $(wildcard sdk/emulator/mksdcard/src/source/*.c) + +mksdcard: $(MKSDCARD_SRCS) + $(CC) -o $@ $(CFLAGS) $(MKSDCARD_CFLAGS) $(LDFLAGS) $(MKSDCARD_SRCS) $(MKSDCARD_LIBS) + + + |