make/cc.mk

Wed, 02 Jul 2025 23:21:17 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 02 Jul 2025 23:21:17 +0200
changeset 174
0009b982bc7d
parent 104
2ca88ec29953
permissions
-rw-r--r--

resolve TODOs regarding input.h

a) mouse position must be integer, because it can be negative (though rarely)
b) we should not trade "access complexity" for space in the scancodes array

0
593b60458157 initial commit
Mike Becker <universe@uap-core.de>
parents:
diff changeset
1 #
593b60458157 initial commit
Mike Becker <universe@uap-core.de>
parents:
diff changeset
2 # cc toolchain config
593b60458157 initial commit
Mike Becker <universe@uap-core.de>
parents:
diff changeset
3 #
593b60458157 initial commit
Mike Becker <universe@uap-core.de>
parents:
diff changeset
4
593b60458157 initial commit
Mike Becker <universe@uap-core.de>
parents:
diff changeset
5 CFLAGS =
104
2ca88ec29953 fix wrong flags in toolchain.mk files after updating uwproj + add gcc config with extra warnings
Mike Becker <universe@uap-core.de>
parents: 1
diff changeset
6 DEBUG_CFLAGS = -g
2ca88ec29953 fix wrong flags in toolchain.mk files after updating uwproj + add gcc config with extra warnings
Mike Becker <universe@uap-core.de>
parents: 1
diff changeset
7 RELEASE_CFLAGS = -O3 -DNDEBUG
0
593b60458157 initial commit
Mike Becker <universe@uap-core.de>
parents:
diff changeset
8 LDFLAGS =

mercurial