mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-03 09:23:23 +08:00
9 lines
241 B
Makefile
9 lines
241 B
Makefile
LOCAL_PATH := $(call my-dir)/..
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CFLAGS := -std=c99 -O2 -W -Wall -pthread -pipe $(COPT)
|
|
LOCAL_MODULE := mongoose
|
|
LOCAL_SRC_FILES := examples/hello_world/hello_world.c mongoose.c
|
|
|
|
include $(BUILD_EXECUTABLE)
|