We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75eea96 commit a33cbbeCopy full SHA for a33cbbe
Makefile
@@ -39,6 +39,14 @@ LDFLAGS =
39
CFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wdouble-promotion -Wshadow -Wstrict-prototypes -Wpointer-arith -Wno-unused-function
40
CXXFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function
41
42
+ifeq ($(TILESIZE_X),)
43
+ TILESIZE_X = 1
44
+endif
45
+
46
+ifeq ($(TILESIZE_Y),)
47
+ TILESIZE_Y = 1
48
49
50
CFLAGS += -D EXPERIMENT_TILESIZE_X=$(TILESIZE_X) -D EXPERIMENT_TILESIZE_Y=$(TILESIZE_Y)
51
CXXFLAGS += -D EXPERIMENT_TILESIZE_X=$(TILESIZE_X) -D EXPERIMENT_TILESIZE_Y=$(TILESIZE_Y)
52
0 commit comments