File: main_makefile

package info (click to toggle)
android-platform-system-core 21-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,624 kB
  • ctags: 11,983
  • sloc: ansic: 70,139; cpp: 14,766; asm: 1,774; sh: 875; yacc: 137; python: 131; makefile: 120; lex: 103; java: 79
file content (17 lines) | stat: -rw-r--r-- 425 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Index: android-platform-system-core/Makefile
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ android-platform-system-core/Makefile	2012-11-26 22:52:27.908199571 +0100
@@ -0,0 +1,12 @@
+#!/bin/make
+
+all:
+	make -C liblog
+	make -C libcutils
+	make -C libzipfile
+
+clean:
+	make -C liblog clean
+	make -C libcutils clean
+	make -C libzipfile clean
+