Diff of /Makefile [b383b0] .. [853a2a]  Maximize  Restore

Switch to unified view

a/Makefile b/Makefile
...
...
8
# if parameter "DEBUG" is set, we set debug flags for lex/yacc
8
# if parameter "DEBUG" is set, we set debug flags for lex/yacc
9
ifneq (${DEBUG},)
9
ifneq (${DEBUG},)
10
DEBUG_FLAGS += -d
10
DEBUG_FLAGS += -d
11
endif
11
endif
12
12
13
all: ${C2IEC}
13
all: ${C2IEC} ${C2IEC}.js ${C2IEC}.wasm ${C2IEC}.html
14
14
15
${C2IEC}: lex.yy.c y.tab.c
15
${C2IEC}: lex.yy.c y.tab.c
16
    $(CC) -o $@ $^
16
    $(CC) -o $@ $^
17
17
18
${C2IEC}.js: lex.yy.c y.tab.c
18
${C2IEC}.js: lex.yy.c y.tab.c