mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +01:00
10 lines
136 B
Makefile
10 lines
136 B
Makefile
|
|
||
|
INPUTS = main.c
|
||
|
|
||
|
all: main.html
|
||
|
|
||
|
main.html: ${INPUTS}
|
||
|
emcc -s USE_SDL=2 -s USE_SDL_IMAGE=2 -s SDL2_IMAGE_FORMATS='["png"]' $^ -o $@
|
||
|
|
||
|
|