mirror of
https://github.com/mamedev/mame.git
synced 2024-11-18 10:06:19 +01:00
8 lines
239 B
Makefile
8 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)
|