24 lines
620 B
Makefile
24 lines
620 B
Makefile
|
#
|
||
|
# Example Makefile for building the eventloop example
|
||
|
#
|
||
|
|
||
|
CC = gcc
|
||
|
|
||
|
evloop:
|
||
|
@echo "NOTE: The eventloop is an example intended to be used on Linux"
|
||
|
@echo " or other common UNIX variants. It is not fully portable."
|
||
|
@echo ""
|
||
|
|
||
|
$(CC) -o $@ -std=c99 -Wall -Wextra -O2 -Isrc \
|
||
|
examples/eventloop/main.c \
|
||
|
examples/eventloop/c_eventloop.c \
|
||
|
examples/eventloop/poll.c \
|
||
|
examples/eventloop/socket.c \
|
||
|
examples/eventloop/fileio.c \
|
||
|
src/duktape.c \
|
||
|
-lm
|
||
|
|
||
|
@echo ""
|
||
|
@echo "NOTE: You must 'cd examples/eventloop' before you execute the"
|
||
|
@echo " eventloop binary: it relies on finding .js files in CWD"
|