mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-28 21:59:02 +08:00
9 lines
257 B
Makefile
9 lines
257 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/simplest_web_server/simplest_web_server.c mongoose.c
|
|
|
|
include $(BUILD_EXECUTABLE)
|