mirror of
https://github.com/holub/mame
synced 2025-05-05 05:53:05 +03:00
9 lines
239 B
Makefile
9 lines
239 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/web_server/web_server.c mongoose.c
|
|
|
|
include $(BUILD_EXECUTABLE)
|