Skip to content

Commit 5004ef1

Browse files
committed
Fixes typo in Makefile, CXX flags were not passed to the compiler.
Noticed by Mariano Dominguez, this closes #66
1 parent b2d43d2 commit 5004ef1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ CC=gcc
2929
OPTFLAGS=-O2
3030

3131
# General options for C++ compiler
32-
CXXFLAG=-Wall -std=c++14
32+
CXXFLAGS=-Wall -std=c++14
3333

3434
# General flags for 6502 assembly files
3535
CA65_FLAGS=-g -tatari -I cc65/asminc -I src

0 commit comments

Comments
 (0)